(style, string)
| 2 | |
| 3 | var words = {}; |
| 4 | function define(style, string) { |
| 5 | var split = string.split(' '); |
| 6 | for(var i = 0; i < split.length; i++) { |
| 7 | words[split[i]] = style; |
| 8 | } |
| 9 | }; |
| 10 | |
| 11 | // Atoms |
| 12 | define('atom', 'true false'); |
no test coverage detected