UNPKG

browserify-adventure

Version:

learn browserify with this educational adventure

10 lines (7 loc) 294 B
Here's the reference solution: var uniq = require('uniq'); var list = prompt('enter a list').split(','); console.log(uniq(list)); When we compiled with browserify starting at the entry file, browserify saw the `require('uniq')` and placed the uniq module into that concatenated output.