Home
Name Modified Size InfoDownloads / Week
index.js 2016-08-24 5.2 kB
README.md 2016-08-24 499 Bytes
LICENSE 2016-08-24 765 Bytes
package.json 2016-08-24 2.2 kB
abbrev.js 2016-08-24 1.8 kB
window-size.cmd 2016-08-24 184 Bytes
weinre 2016-08-24 297 Bytes
weinre.cmd 2016-08-24 174 Bytes
window-size 2016-08-24 307 Bytes
uuid 2016-08-24 307 Bytes
uuid.cmd 2016-08-24 184 Bytes
tsserver 2016-08-24 317 Bytes
tsserver.cmd 2016-08-24 194 Bytes
tsc 2016-08-24 307 Bytes
tsc.cmd 2016-08-24 184 Bytes
supports-color.cmd 2016-08-24 190 Bytes
throttleproxy 2016-08-24 343 Bytes
throttleproxy.cmd 2016-08-24 220 Bytes
strip-ansi.cmd 2016-08-24 182 Bytes
supports-color 2016-08-24 313 Bytes
semver.cmd 2016-08-24 182 Bytes
strip-ansi 2016-08-24 305 Bytes
rimraf.cmd 2016-08-24 174 Bytes
semver 2016-08-24 305 Bytes
nopt.cmd 2016-08-24 180 Bytes
rimraf 2016-08-24 297 Bytes
lt.cmd 2016-08-24 192 Bytes
nopt 2016-08-24 303 Bytes
lite-server.cmd 2016-08-24 202 Bytes
lt 2016-08-24 315 Bytes
has-ansi.cmd 2016-08-24 178 Bytes
lite-server 2016-08-24 325 Bytes
har-validator.cmd 2016-08-24 210 Bytes
has-ansi 2016-08-24 301 Bytes
express.cmd 2016-08-24 186 Bytes
har-validator 2016-08-24 333 Bytes
dev-ip 2016-08-24 311 Bytes
dev-ip.cmd 2016-08-24 188 Bytes
express 2016-08-24 309 Bytes
concurrent 2016-08-24 319 Bytes
concurrent.cmd 2016-08-24 196 Bytes
browser-sync 2016-08-24 335 Bytes
browser-sync.cmd 2016-08-24 212 Bytes
wikipedia.service.ts 2016-08-24 843 Bytes
wikipedia.service.js 2016-08-24 2.1 kB
wikipedia.service.js.map 2016-08-24 867 Bytes
wiki.component.js.map 2016-08-24 539 Bytes
wiki.component.ts 2016-08-24 844 Bytes
wiki.component.js 2016-08-24 2.0 kB
wiki-smart.component.ts 2016-08-24 1.1 kB
wiki-smart.component.js 2016-08-24 2.3 kB
wiki-smart.component.js.map 2016-08-24 788 Bytes
hero.service.ts 2016-08-24 1.7 kB
hero.ts 2016-08-24 271 Bytes
hero.service.promise.js.map 2016-08-24 1.5 kB
hero.service.promise.ts 2016-08-24 1.6 kB
hero.service.js.map 2016-08-24 1.5 kB
hero.service.promise.js 2016-08-24 2.9 kB
hero.js.map 2016-08-24 248 Bytes
hero.service.js 2016-08-24 3.0 kB
hero-list.component.ts 2016-08-24 1.2 kB
hero.js 2016-08-24 396 Bytes
hero-list.component.promise.js.map 2016-08-24 1.1 kB
hero-list.component.promise.ts 2016-08-24 1.1 kB
hero-list.component.js.map 2016-08-24 1.1 kB
hero-list.component.promise.js 2016-08-24 2.5 kB
hero-list.component.html 2016-08-24 500 Bytes
hero-list.component.js 2016-08-24 2.4 kB
rxjs-operators.js.map 2016-08-24 381 Bytes
rxjs-operators.ts 2016-08-24 649 Bytes
main.ts 2016-08-24 354 Bytes
rxjs-operators.js 2016-08-24 734 Bytes
main.js 2016-08-24 453 Bytes
main.js.map 2016-08-24 213 Bytes
heroes.json 2016-08-24 209 Bytes
hero-data.ts 2016-08-24 455 Bytes
hero-data.js.map 2016-08-24 540 Bytes
hero-data.js 2016-08-24 708 Bytes
app.module.ts 2016-08-24 1.3 kB
app.module.js.map 2016-08-24 745 Bytes
app.module.js 2016-08-24 2.6 kB
app.component.ts 2016-08-24 538 Bytes
app.component.js.map 2016-08-24 361 Bytes
app.component.js 2016-08-24 1.6 kB
org.eclipse.wst.jsdt.ui.superType.container 2016-08-24 44 Bytes
org.eclipse.wst.jsdt.ui.superType.name 2016-08-24 6 Bytes
tsconfig.json 2016-08-24 303 Bytes
styles.css 2016-08-24 2.5 kB
systemjs.config.js 2016-08-24 3.0 kB
sample.css 2016-08-24 202 Bytes
a2docs.css 2016-08-24 78.7 kB
index.html 2016-08-24 1.0 kB
Totals: 92 Items   152.1 kB 0

abbrev-js

Just like ruby's Abbrev.

Usage:

var abbrev = require("abbrev");
abbrev("foo", "fool", "folding", "flop");

// returns:
{ fl: 'flop'
, flo: 'flop'
, flop: 'flop'
, fol: 'folding'
, fold: 'folding'
, foldi: 'folding'
, foldin: 'folding'
, folding: 'folding'
, foo: 'foo'
, fool: 'fool'
}

This is handy for command-line scripts, or other cases where you want to be able to accept shorthands.

Source: README.md, updated 2016-08-24