(style, string)
| 15 | |
| 16 | var words = {}; |
| 17 | function define(style, string) { |
| 18 | var split = string.split(' '); |
| 19 | for(var i = 0; i < split.length; i++) { |
| 20 | words[split[i]] = style; |
| 21 | } |
| 22 | }; |
| 23 | |
| 24 | // Atoms |
| 25 | define('atom', 'true false'); |
no outgoing calls
no test coverage detected
searching dependent graphs…