Commit af121825a7ee2edf858a5eef1d37cf0bdae30be5
Some kinda JS syntax thing
Fixes: ``` /usr/local/lib/node_modules/scuttlebot/node_modules/flumeview-query/links.js:101 ) ^ SyntaxError: Unexpected token ) at createScript (vm.js:53:10) at Object.runInThisContext (vm.js:95:10) at Module._compile (module.js:543:28) at Object.Module._extensions..js (module.js:580:10) at Module.load (module.js:488:32) at tryModuleLoad (module.js:447:12) at Function.Module._load (module.js:439:3) at Module.require (module.js:498:17) at require (internal/module.js:20:19) at Object.<anonymous> (/usr/local/lib/node_modules/scuttlebot/node_modules/ssb-links/index.js:2:23) ```Joran Kikke authored on 3/23/2018, 4:46:18 AM
GitHub committed on 3/23/2018, 4:46:18 AM
Parent: 899acc48ba9c9731c14929fc43a0418c1a92bc9f
Files changed
links.js | changed |
links.js | ||
---|---|---|
@@ -96,9 +96,9 @@ | ||
96 | 96 … | u.set(index.value[i], data.key[i+1], o) |
97 | 97 … | return o |
98 | 98 … | }), |
99 | 99 … | isArray(opts.query) ? mfr(opts.query) : pull.through(), |
100 | - opts.limit ? pull.take(opts.limit) : pull.through(), | |
100 … | + opts.limit ? pull.take(opts.limit) : pull.through() | |
101 | 101 … | ) |
102 | 102 … | } |
103 | 103 … | return index |
104 | 104 … | } |
Built with git-ssb-web