Skip to content

Instantly share code, notes, and snippets.

@LukeLR
Last active October 1, 2015 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LukeLR/34539e9ed2d0109b00a8 to your computer and use it in GitHub Desktop.
Save LukeLR/34539e9ed2d0109b00a8 to your computer and use it in GitHub Desktop.
fxa-auth-server install failure on x86

#Firefox Auth Server installation failure I tried to install a Firefox Auth Server on my Linux x86 machine today by following Mozilla's official tutorial. Their instructions refer to the fxa-auth-server GitHub repository, where the read me is to be followed. Unfortunately, when executing npm install to build the server scripts, npm exits with an error. The terminal output and the debug log is found below, this has been asked in a server fault question.

user@host:~/ffsync/fxa-auth-server$ npm install
> scrypt-hash@1.1.12 install /home/lukas/ffsync/fxa-auth-server/node_modules/scrypt-hash
> node-gyp rebuild
make: Entering directory `/home/lukas/ffsync/fxa-auth-server/node_modules/scrypt-hash/build'
CC(target) Release/obj.target/scrypt/crypto_scrypt-sse.o
In file included from ../crypto_scrypt-sse.c:33:0:
/usr/lib/gcc/i686-linux-gnu/4.8/include/emmintrin.h:31:3: error: #error "SSE2 instruction set not enabled"
# error "SSE2 instruction set not enabled"
^
../crypto_scrypt-sse.c:45:23: error: unknown type name ‘__m128i’
static void salsa20_8(__m128i *);
^
../crypto_scrypt-sse.c:46:29: error: unknown type name ‘__m128i’
static void blockmix_salsa8(__m128i *, __m128i *, __m128i *, size_t);
^
../crypto_scrypt-sse.c:46:40: error: unknown type name ‘__m128i’
static void blockmix_salsa8(__m128i *, __m128i *, __m128i *, size_t);
^
../crypto_scrypt-sse.c:46:51: error: unknown type name ‘__m128i’
static void blockmix_salsa8(__m128i *, __m128i *, __m128i *, size_t);
^
../crypto_scrypt-sse.c: In function ‘blkcpy’:
../crypto_scrypt-sse.c:84:2: error: unknown type name ‘__m128i’
__m128i * D = dest;
^
../crypto_scrypt-sse.c:85:2: error: unknown type name ‘__m128i’
__m128i * S = src;
^
../crypto_scrypt-sse.c: In function ‘blkxor’:
../crypto_scrypt-sse.c:96:2: error: unknown type name ‘__m128i’
__m128i * D = dest;
^
../crypto_scrypt-sse.c:97:2: error: unknown type name ‘__m128i’
__m128i * S = src;
^
../crypto_scrypt-sse.c:102:3: warning: implicit declaration of function ‘_mm_xor_si128’ [-Wimplicit-function-declaration]
D[i] = _mm_xor_si128(D[i], S[i]);
^
../crypto_scrypt-sse.c: At top level:
../crypto_scrypt-sse.c:110:11: error: unknown type name ‘__m128i’
salsa20_8(__m128i B[4])
^
../crypto_scrypt-sse.c:174:17: error: unknown type name ‘__m128i’
blockmix_salsa8(__m128i * Bin, __m128i * Bout, __m128i * X, size_t r)
^
../crypto_scrypt-sse.c:174:32: error: unknown type name ‘__m128i’
blockmix_salsa8(__m128i * Bin, __m128i * Bout, __m128i * X, size_t r)
^
../crypto_scrypt-sse.c:174:48: error: unknown type name ‘__m128i’
blockmix_salsa8(__m128i * Bin, __m128i * Bout, __m128i * X, size_t r)
^
../crypto_scrypt-sse.c: In function ‘smix’:
../crypto_scrypt-sse.c:224:2: error: unknown type name ‘__m128i’
__m128i * X = XY;
^
../crypto_scrypt-sse.c:225:2: error: unknown type name ‘__m128i’
__m128i * Y = (void *)((uintptr_t)(XY) + 128 * r);
^
../crypto_scrypt-sse.c:226:2: error: unknown type name ‘__m128i’
__m128i * Z = (void *)((uintptr_t)(XY) + 256 * r);
^
../crypto_scrypt-sse.c:242:10: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
blkcpy((void *)((uintptr_t)(V) + i * 128 * r), X, 128 * r);
^
../crypto_scrypt-sse.c:245:3: warning: implicit declaration of function ‘blockmix_salsa8’ [-Wimplicit-function-declaration]
blockmix_salsa8(X, Y, Z, r);
^
../crypto_scrypt-sse.c:248:10: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
blkcpy((void *)((uintptr_t)(V) + (i + 1) * 128 * r),
^
../crypto_scrypt-sse.c:261:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
blkxor(X, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r);
^
../crypto_scrypt-sse.c:268:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
blkxor(Y, (void *)((uintptr_t)(V) + j * 128 * r), 128 * r);
^
make: *** [Release/obj.target/scrypt/crypto_scrypt-sse.o] Error 1
make: Leaving directory `/home/lukas/ffsync/fxa-auth-server/node_modules/scrypt-hash/build'
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:270:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
Linux 3.16.0-50-generic
gyp ERR! command "/usr/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/lukas/ffsync/fxa-auth-server/node_modules/scrypt-hash
gyp ERR! node -v v4.1.1
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
npm WARN deprecated CSSselect@0.4.1: the module is now available as 'css-select'
npm WARN deprecated CSSwhat@0.4.7: the module is now available as 'css-what'
npm WARN peerDependencies The peer dependency grunt@>=0.4.0 included from grunt-bump will no
npm WARN peerDependencies longer be automatically installed to fulfill the peerDependency
npm WARN peerDependencies in npm 3+. Your application will need to depend on it explicitly.
> dtrace-provider@0.2.8 install /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/restify/node_modules/dtrace-provider
> node-gyp rebuild
make: Entering directory `/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/restify/node_modules/dtrace-provider/build'
TOUCH Release/obj.target/DTraceProviderStub.stamp
make: Leaving directory `/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/restify/node_modules/dtrace-provider/build'
npm ERR! Linux 3.16.0-50-generic
npm ERR! argv "/usr/bin/node" "/usr/bin/npm" "install"
npm ERR! node v4.1.1
npm ERR! npm v2.14.4
npm ERR! code ELIFECYCLE
npm ERR! scrypt-hash@1.1.12 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the scrypt-hash@1.1.12 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the scrypt-hash package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node-gyp rebuild
npm ERR! You can get their info via:
npm ERR! npm owner ls scrypt-hash
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/lukas/ffsync/fxa-auth-server/npm-debug.log
40020 silly gunzTarPerm modified mode [ 'internal/initCloneObject.js', 420, 436 ]
40021 silly gunzTarPerm extractEntry internal/baseFor.js
40022 silly gunzTarPerm modified mode [ 'internal/baseFor.js', 420, 436 ]
40023 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz
40024 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz
40025 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-890d9289d123
40026 silly gentlyRm /tmp/npm-30115-af71656d/unpack-890d9289d123 is being purged
40027 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-890d9289d123
40028 silly install resolved []
40029 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler
40030 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler
40031 silly gunzTarPerm modes [ '775', '664' ]
40032 silly gunzTarPerm extractEntry array/#/filter/index.js
40033 silly gunzTarPerm modified mode [ 'array/#/filter/index.js', 420, 436 ]
40034 silly gunzTarPerm extractEntry array/#/filter/is-implemented.js
40035 silly gunzTarPerm modified mode [ 'array/#/filter/is-implemented.js', 420, 436 ]
40036 silly gunzTarPerm extractEntry src/core/linq/observable/buffer.js
40037 silly gunzTarPerm modified mode [ 'src/core/linq/observable/buffer.js', 438, 436 ]
40038 silly gunzTarPerm extractEntry src/core/linq/observable/toasync.js
40039 silly gunzTarPerm modified mode [ 'src/core/linq/observable/toasync.js', 438, 436 ]
40040 info linkStuff domhandler@2.2.1
40041 silly linkStuff domhandler@2.2.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules as its parent node_modules
40042 silly gunzTarPerm extractEntry package.json
40043 silly cache afterAdd dom-serializer@0.1.0
40044 verbose afterAdd /home/lukas/.npm/dom-serializer/0.1.0/package/package.json not in flight; writing
40045 silly gunzTarPerm extractEntry internal/invokePath.js
40046 silly gunzTarPerm modified mode [ 'internal/invokePath.js', 420, 436 ]
40047 silly gunzTarPerm extractEntry internal/baseFlatten.js
40048 silly gunzTarPerm modified mode [ 'internal/baseFlatten.js', 420, 436 ]
40049 silly gunzTarPerm extractEntry .npmignore
40050 silly gunzTarPerm extractEntry README.md
40051 silly gunzTarPerm extractEntry array/#/filter/shim.js
40052 silly gunzTarPerm modified mode [ 'array/#/filter/shim.js', 420, 436 ]
40053 silly gunzTarPerm extractEntry array/#/slice/implement.js
40054 silly gunzTarPerm modified mode [ 'array/#/slice/implement.js', 420, 436 ]
40055 silly gunzTarPerm extractEntry src/core/linq/observable/average.js
40056 silly gunzTarPerm modified mode [ 'src/core/linq/observable/average.js', 438, 436 ]
40057 silly gunzTarPerm extractEntry src/core/linq/observable/tomap.js
40058 silly gunzTarPerm modified mode [ 'src/core/linq/observable/tomap.js', 438, 436 ]
40059 silly gunzTarPerm extractEntry src/core/linq/observable/asobservable.js
40060 silly gunzTarPerm modified mode [ 'src/core/linq/observable/asobservable.js', 438, 436 ]
40061 verbose afterAdd /home/lukas/.npm/dom-serializer/0.1.0/package/package.json written
40062 silly install resolved [ { name: 'dom-serializer',
40062 silly install resolved version: '0.1.0',
40062 silly install resolved description: 'render dom nodes to string',
40062 silly install resolved author: { name: 'Felix Boehm', email: 'me@feedic.com' },
40062 silly install resolved keywords: [ 'html', 'xml', 'render' ],
40062 silly install resolved repository:
40062 silly install resolved { type: 'git',
40062 silly install resolved url: 'git://github.com/cheeriojs/dom-renderer.git' },
40062 silly install resolved main: './index.js',
40062 silly install resolved files: [ 'index.js' ],
40062 silly install resolved dependencies: { domelementtype: '~1.1.1', entities: '~1.1.1' },
40062 silly install resolved devDependencies:
40062 silly install resolved { cheerio: '*',
40062 silly install resolved 'expect.js': '~0.3.1',
40062 silly install resolved jshint: '~2.3.0',
40062 silly install resolved lodash: '~2.4.1',
40062 silly install resolved mocha: '*',
40062 silly install resolved xyz: '0.4.x' },
40062 silly install resolved scripts: { test: 'mocha test.js' },
40062 silly install resolved license: 'MIT',
40062 silly install resolved bugs: { url: 'https://github.com/cheeriojs/dom-renderer/issues' },
40062 silly install resolved readme: 'ERROR: No README data found!',
40062 silly install resolved homepage: 'https://github.com/cheeriojs/dom-renderer#readme',
40062 silly install resolved _id: 'dom-serializer@0.1.0',
40062 silly install resolved _shasum: '073c697546ce0780ce23be4a28e293e40bc30c82',
40062 silly install resolved _resolved: 'https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz',
40062 silly install resolved _from: 'https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz' } ]
40063 info install dom-serializer@0.1.0 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils
40064 info installOne dom-serializer@0.1.0
40065 verbose installOne of dom-serializer to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils not in flight; installing
40066 silly gunzTarPerm extractEntry src/core/linq/observable/topromise.js
40067 silly gunzTarPerm modified mode [ 'src/core/linq/observable/topromise.js', 438, 436 ]
40068 verbose lock using /home/lukas/.npm/_locks/dom-serializer-eaa8d215ddabe89c.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40069 silly install write writing dom-serializer 0.1.0 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40070 silly gunzTarPerm extractEntry src/core/linq/observable/and.js
40071 silly gunzTarPerm modified mode [ 'src/core/linq/observable/and.js', 438, 436 ]
40072 silly cache afterAdd core-util-is@1.0.1
40073 verbose afterAdd /home/lukas/.npm/core-util-is/1.0.1/package/package.json not in flight; writing
40074 silly cache afterAdd isarray@0.0.1
40075 verbose afterAdd /home/lukas/.npm/isarray/0.0.1/package/package.json not in flight; writing
40076 verbose linkBins domhandler@2.2.1
40077 verbose linkMans domhandler@2.2.1
40078 verbose rebuildBundles domhandler@2.2.1
40079 silly gunzTarPerm extractEntry internal/isArrayLike.js
40080 silly gunzTarPerm modified mode [ 'internal/isArrayLike.js', 420, 436 ]
40081 silly gunzTarPerm extractEntry array/#/slice/index.js
40082 silly gunzTarPerm modified mode [ 'array/#/slice/index.js', 420, 436 ]
40083 silly gunzTarPerm extractEntry array/#/slice/is-implemented.js
40084 silly gunzTarPerm modified mode [ 'array/#/slice/is-implemented.js', 420, 436 ]
40085 silly gunzTarPerm extractEntry src/core/linq/observable/toset.js
40086 silly gunzTarPerm modified mode [ 'src/core/linq/observable/toset.js', 438, 436 ]
40087 info install domhandler@2.2.1
40088 silly gunzTarPerm extractEntry LICENSE
40089 silly gunzTarPerm extractEntry index.js
40090 silly gunzTarPerm extractEntry src/core/linq/observable/ambproto.js
40091 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ambproto.js', 438, 436 ]
40092 info postinstall domhandler@2.2.1
40093 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40094 verbose afterAdd /home/lukas/.npm/core-util-is/1.0.1/package/package.json written
40095 silly gunzTarPerm extractEntry src/core/linq/observable/transduce.js
40096 silly gunzTarPerm modified mode [ 'src/core/linq/observable/transduce.js', 438, 436 ]
40097 verbose afterAdd /home/lukas/.npm/isarray/0.0.1/package/package.json written
40098 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer is being purged from base /home/lukas/ffsync/fxa-auth-server
40099 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40100 verbose unlock done using /home/lukas/.npm/_locks/domhandler-b222ecc1aed30aa9.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler
40101 verbose tar unpack /home/lukas/.npm/dom-serializer/0.1.0/package.tgz
40102 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40103 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer is being purged
40104 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
40105 silly gunzTarPerm extractEntry src/core/linq/observable/amb.js
40106 silly gunzTarPerm modified mode [ 'src/core/linq/observable/amb.js', 438, 436 ]
40107 silly gunzTarPerm modes [ '775', '664' ]
40108 silly gunzTarPerm extractEntry array/#/slice/shim.js
40109 silly gunzTarPerm modified mode [ 'array/#/slice/shim.js', 420, 436 ]
40110 silly gunzTarPerm extractEntry array/#/find/implement.js
40111 silly gunzTarPerm modified mode [ 'array/#/find/implement.js', 420, 436 ]
40112 silly gunzTarPerm extractEntry internal/baseFindIndex.js
40113 silly gunzTarPerm modified mode [ 'internal/baseFindIndex.js', 420, 436 ]
40114 silly gunzTarPerm extractEntry internal/isIndex.js
40115 silly gunzTarPerm modified mode [ 'internal/isIndex.js', 420, 436 ]
40116 silly gunzTarPerm extractEntry package.json
40117 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
40118 silly cache afterAdd inherits@2.0.1
40119 verbose afterAdd /home/lukas/.npm/inherits/2.0.1/package/package.json not in flight; writing
40120 silly gunzTarPerm extractEntry src/core/linq/observable/using.js
40121 silly gunzTarPerm modified mode [ 'src/core/linq/observable/using.js', 438, 436 ]
40122 silly gunzTarPerm extractEntry src/core/linq/observable/aggregate.js
40123 silly gunzTarPerm modified mode [ 'src/core/linq/observable/aggregate.js', 438, 436 ]
40124 silly gunzTarPerm extractEntry LICENSE
40125 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
40126 silly gunzTarPerm extractEntry index.js
40127 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
40128 silly gunzTarPerm extractEntry array/#/find/index.js
40129 silly gunzTarPerm modified mode [ 'array/#/find/index.js', 420, 436 ]
40130 silly gunzTarPerm extractEntry array/#/find/is-implemented.js
40131 silly gunzTarPerm modified mode [ 'array/#/find/is-implemented.js', 420, 436 ]
40132 verbose afterAdd /home/lukas/.npm/inherits/2.0.1/package/package.json written
40133 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/package.json
40134 silly gunzTarPerm extractEntry internal/baseFind.js
40135 silly gunzTarPerm modified mode [ 'internal/baseFind.js', 420, 436 ]
40136 silly gunzTarPerm extractEntry internal/isIterateeCall.js
40137 silly gunzTarPerm modified mode [ 'internal/isIterateeCall.js', 420, 436 ]
40138 info preinstall argparse@1.0.2
40139 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/package.json
40140 silly gunzTarPerm extractEntry array/#/find/shim.js
40141 silly gunzTarPerm modified mode [ 'array/#/find/shim.js', 420, 436 ]
40142 silly gunzTarPerm extractEntry array/#/splice/implement.js
40143 silly gunzTarPerm modified mode [ 'array/#/splice/implement.js', 420, 436 ]
40144 silly gunzTarPerm extractEntry src/core/linq/observable/when.js
40145 silly gunzTarPerm modified mode [ 'src/core/linq/observable/when.js', 438, 436 ]
40146 silly gunzTarPerm extractEntry src/core/linq/observable/_singleordefault.js
40147 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_singleordefault.js', 438, 436 ]
40148 silly gunzTarPerm extractEntry internal/baseFilter.js
40149 silly gunzTarPerm modified mode [ 'internal/baseFilter.js', 420, 436 ]
40150 silly gunzTarPerm extractEntry internal/isKey.js
40151 silly gunzTarPerm modified mode [ 'internal/isKey.js', 420, 436 ]
40152 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse',
40152 verbose readDependencies: using existing wrap { lodash:
40152 verbose readDependencies: using existing wrap { version: '3.10.1',
40152 verbose readDependencies: using existing wrap from: 'lodash@>=3.2.0 <4.0.0',
40152 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' },
40152 verbose readDependencies: using existing wrap 'sprintf-js':
40152 verbose readDependencies: using existing wrap { version: '1.0.3',
40152 verbose readDependencies: using existing wrap from: 'sprintf-js@>=1.0.2 <1.1.0',
40152 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' } } ]
40153 verbose from wrap [ 'lodash',
40153 verbose from wrap { version: '3.10.1',
40153 verbose from wrap from: 'lodash@>=3.2.0 <4.0.0',
40153 verbose from wrap resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' } ]
40154 verbose from wrap [ 'sprintf-js',
40154 verbose from wrap { version: '1.0.3',
40154 verbose from wrap from: 'sprintf-js@>=1.0.2 <1.1.0',
40154 verbose from wrap resolved: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' } ]
40155 verbose readDependencies returned deps { lodash: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40155 verbose readDependencies returned deps 'sprintf-js': 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' }
40156 silly prepareForInstallMany adding lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz from argparse dependencies
40157 silly prepareForInstallMany adding sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz from argparse dependencies
40158 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/package.json
40159 silly gunzTarPerm extractEntry array/#/splice/index.js
40160 silly gunzTarPerm modified mode [ 'array/#/splice/index.js', 420, 436 ]
40161 silly gunzTarPerm extractEntry array/#/splice/is-implemented.js
40162 silly gunzTarPerm modified mode [ 'array/#/splice/is-implemented.js', 420, 436 ]
40163 silly gunzTarPerm extractEntry src/core/linq/observable/where.js
40164 silly gunzTarPerm modified mode [ 'src/core/linq/observable/where.js', 438, 436 ]
40165 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimertimespanandperiod.js
40166 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimertimespanandperiod.js',
40166 silly gunzTarPerm 438,
40166 silly gunzTarPerm 436 ]
40167 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse',
40167 verbose readDependencies: using existing wrap { lodash:
40167 verbose readDependencies: using existing wrap { version: '3.10.1',
40167 verbose readDependencies: using existing wrap from: 'lodash@>=3.2.0 <4.0.0',
40167 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' },
40167 verbose readDependencies: using existing wrap 'sprintf-js':
40167 verbose readDependencies: using existing wrap { version: '1.0.3',
40167 verbose readDependencies: using existing wrap from: 'sprintf-js@>=1.0.2 <1.1.0',
40167 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' } } ]
40168 verbose from wrap [ 'lodash',
40168 verbose from wrap { version: '3.10.1',
40168 verbose from wrap from: 'lodash@>=3.2.0 <4.0.0',
40168 verbose from wrap resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' } ]
40169 verbose from wrap [ 'sprintf-js',
40169 verbose from wrap { version: '1.0.3',
40169 verbose from wrap from: 'sprintf-js@>=1.0.2 <1.1.0',
40169 verbose from wrap resolved: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' } ]
40170 verbose readDependencies returned deps { lodash: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40170 verbose readDependencies returned deps 'sprintf-js': 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' }
40171 silly cache add args [ 'lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40171 silly cache add null ]
40172 verbose cache add spec lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
40173 silly cache add args [ 'sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
40173 silly cache add null ]
40174 verbose cache add spec sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40175 silly gunzTarPerm extractEntry internal/baseFill.js
40176 silly gunzTarPerm modified mode [ 'internal/baseFill.js', 420, 436 ]
40177 silly gunzTarPerm extractEntry internal/isLaziable.js
40178 silly gunzTarPerm modified mode [ 'internal/isLaziable.js', 420, 436 ]
40179 silly cache add parsed spec Result {
40179 silly cache add raw: 'lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40179 silly cache add scope: null,
40179 silly cache add name: 'lodash',
40179 silly cache add rawSpec: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40179 silly cache add spec: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
40179 silly cache add type: 'remote' }
40180 silly mapToRegistry name lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
40181 silly mapToRegistry using default registry
40182 silly mapToRegistry registry https://registry.npmjs.org/
40183 silly mapToRegistry uri https://registry.npmjs.org/lodash@https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
40184 verbose addRemoteTarball https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz already in flight; waiting
40185 silly cache add parsed spec Result {
40185 silly cache add raw: 'sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
40185 silly cache add scope: null,
40185 silly cache add name: 'sprintf-js',
40185 silly cache add rawSpec: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
40185 silly cache add spec: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
40185 silly cache add type: 'remote' }
40186 silly mapToRegistry name sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40187 silly mapToRegistry using default registry
40188 silly mapToRegistry registry https://registry.npmjs.org/
40189 silly mapToRegistry uri https://registry.npmjs.org/sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40190 verbose addRemoteTarball https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz not in flight; adding
40191 verbose addRemoteTarball [ 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
40191 verbose addRemoteTarball null ]
40192 info retry fetch attempt 1 at 9:02:46 PM
40193 info attempt registry request try #1 at 9:02:46 PM
40194 http fetch GET https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40195 silly gunzTarPerm extractEntry array/#/splice/shim.js
40196 silly gunzTarPerm modified mode [ 'array/#/splice/shim.js', 420, 436 ]
40197 silly gunzTarPerm extractEntry array/#/find-index/implement.js
40198 silly gunzTarPerm modified mode [ 'array/#/find-index/implement.js', 420, 436 ]
40199 silly gunzTarPerm extractEntry src/core/linq/observable/while.js
40200 silly gunzTarPerm modified mode [ 'src/core/linq/observable/while.js', 438, 436 ]
40201 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimertimespan.js
40202 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimertimespan.js',
40202 silly gunzTarPerm 438,
40202 silly gunzTarPerm 436 ]
40203 silly gunzTarPerm extractEntry internal/baseExtremum.js
40204 silly gunzTarPerm modified mode [ 'internal/baseExtremum.js', 420, 436 ]
40205 silly gunzTarPerm extractEntry internal/isLength.js
40206 silly gunzTarPerm modified mode [ 'internal/isLength.js', 420, 436 ]
40207 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/package.json
40208 silly gunzTarPerm extractEntry array/#/find-index/index.js
40209 silly gunzTarPerm modified mode [ 'array/#/find-index/index.js', 420, 436 ]
40210 silly gunzTarPerm extractEntry array/#/find-index/is-implemented.js
40211 silly gunzTarPerm modified mode [ 'array/#/find-index/is-implemented.js', 420, 436 ]
40212 info preinstall dom-serializer@0.1.0
40213 silly gunzTarPerm extractEntry src/core/linq/observable/window.js
40214 silly gunzTarPerm modified mode [ 'src/core/linq/observable/window.js', 438, 436 ]
40215 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimerdateandperiod.js
40216 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimerdateandperiod.js',
40216 silly gunzTarPerm 438,
40216 silly gunzTarPerm 436 ]
40217 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/package.json
40218 silly gunzTarPerm extractEntry internal/baseEvery.js
40219 silly gunzTarPerm modified mode [ 'internal/baseEvery.js', 420, 436 ]
40220 silly gunzTarPerm extractEntry internal/isObjectLike.js
40221 silly gunzTarPerm modified mode [ 'internal/isObjectLike.js', 420, 436 ]
40222 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer',
40222 verbose readDependencies: using existing wrap { domelementtype:
40222 verbose readDependencies: using existing wrap { version: '1.1.3',
40222 verbose readDependencies: using existing wrap from: 'domelementtype@>=1.1.1 <1.2.0',
40222 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz' },
40222 verbose readDependencies: using existing wrap entities:
40222 verbose readDependencies: using existing wrap { version: '1.1.1',
40222 verbose readDependencies: using existing wrap from: 'entities@>=1.1.1 <1.2.0',
40222 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' } } ]
40223 verbose from wrap [ 'domelementtype',
40223 verbose from wrap { version: '1.1.3',
40223 verbose from wrap from: 'domelementtype@>=1.1.1 <1.2.0',
40223 verbose from wrap resolved: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz' } ]
40224 verbose from wrap [ 'entities',
40224 verbose from wrap { version: '1.1.1',
40224 verbose from wrap from: 'entities@>=1.1.1 <1.2.0',
40224 verbose from wrap resolved: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' } ]
40225 verbose readDependencies returned deps { domelementtype: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40225 verbose readDependencies returned deps entities: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' }
40226 silly prepareForInstallMany adding domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz from dom-serializer dependencies
40227 silly prepareForInstallMany adding entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz from dom-serializer dependencies
40228 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/package.json
40229 silly cache afterAdd string_decoder@0.10.31
40230 verbose afterAdd /home/lukas/.npm/string_decoder/0.10.31/package/package.json not in flight; writing
40231 silly gunzTarPerm extractEntry array/#/find-index/shim.js
40232 silly gunzTarPerm modified mode [ 'array/#/find-index/shim.js', 420, 436 ]
40233 silly gunzTarPerm extractEntry array/#/values/implement.js
40234 silly gunzTarPerm modified mode [ 'array/#/values/implement.js', 420, 436 ]
40235 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithcount.js
40236 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithcount.js', 438, 436 ]
40237 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimerdate.js
40238 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimerdate.js', 438, 436 ]
40239 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithtime.js
40240 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithtime.js', 438, 436 ]
40241 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer',
40241 verbose readDependencies: using existing wrap { domelementtype:
40241 verbose readDependencies: using existing wrap { version: '1.1.3',
40241 verbose readDependencies: using existing wrap from: 'domelementtype@>=1.1.1 <1.2.0',
40241 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz' },
40241 verbose readDependencies: using existing wrap entities:
40241 verbose readDependencies: using existing wrap { version: '1.1.1',
40241 verbose readDependencies: using existing wrap from: 'entities@>=1.1.1 <1.2.0',
40241 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' } } ]
40242 verbose from wrap [ 'domelementtype',
40242 verbose from wrap { version: '1.1.3',
40242 verbose from wrap from: 'domelementtype@>=1.1.1 <1.2.0',
40242 verbose from wrap resolved: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz' } ]
40243 verbose from wrap [ 'entities',
40243 verbose from wrap { version: '1.1.1',
40243 verbose from wrap from: 'entities@>=1.1.1 <1.2.0',
40243 verbose from wrap resolved: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' } ]
40244 verbose readDependencies returned deps { domelementtype: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40244 verbose readDependencies returned deps entities: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' }
40245 verbose afterAdd /home/lukas/.npm/string_decoder/0.10.31/package/package.json written
40246 silly install resolved [ { name: 'core-util-is',
40246 silly install resolved version: '1.0.1',
40246 silly install resolved description: 'The `util.is*` functions introduced in Node v0.12.',
40246 silly install resolved main: 'lib/util.js',
40246 silly install resolved repository: { type: 'git', url: 'git://github.com/isaacs/core-util-is.git' },
40246 silly install resolved keywords:
40246 silly install resolved [ 'util',
40246 silly install resolved 'isBuffer',
40246 silly install resolved 'isArray',
40246 silly install resolved 'isNumber',
40246 silly install resolved 'isString',
40246 silly install resolved 'isRegExp',
40246 silly install resolved 'isThis',
40246 silly install resolved 'isThat',
40246 silly install resolved 'polyfill' ],
40246 silly install resolved author:
40246 silly install resolved { name: 'Isaac Z. Schlueter',
40246 silly install resolved email: 'i@izs.me',
40246 silly install resolved url: 'http://blog.izs.me/' },
40246 silly install resolved license: 'MIT',
40246 silly install resolved bugs: { url: 'https://github.com/isaacs/core-util-is/issues' },
40246 silly install resolved readme: '# core-util-is\n\nThe `util.is*` functions introduced in Node v0.12.\n',
40246 silly install resolved readmeFilename: 'README.md',
40246 silly install resolved homepage: 'https://github.com/isaacs/core-util-is#readme',
40246 silly install resolved _id: 'core-util-is@1.0.1',
40246 silly install resolved _shasum: '6b07085aef9a3ccac6ee53bf9d3df0c1521a5538',
40246 silly install resolved _resolved: 'https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz',
40246 silly install resolved _from: 'https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz' },
40246 silly install resolved { name: 'isarray',
40246 silly install resolved description: 'Array#isArray for older browsers',
40246 silly install resolved version: '0.0.1',
40246 silly install resolved repository:
40246 silly install resolved { type: 'git',
40246 silly install resolved url: 'git://github.com/juliangruber/isarray.git' },
40246 silly install resolved homepage: 'https://github.com/juliangruber/isarray',
40246 silly install resolved main: 'index.js',
40246 silly install resolved scripts: { test: 'tap test/*.js' },
40246 silly install resolved dependencies: {},
40246 silly install resolved devDependencies: { tap: '*' },
40246 silly install resolved keywords: [ 'browser', 'isarray', 'array' ],
40246 silly install resolved author:
40246 silly install resolved { name: 'Julian Gruber',
40246 silly install resolved email: 'mail@juliangruber.com',
40246 silly install resolved url: 'http://juliangruber.com' },
40246 silly install resolved license: 'MIT',
40246 silly install resolved readme: '\n# isarray\n\n`Array#isArray` for older browsers.\n\n## Usage\n\n```js\nvar isArray = require(\'isarray\');\n\nconsole.log(isArray([])); // => true\nconsole.log(isArray({})); // => false\n```\n\n## Installation\n\nWith [npm](http://npmjs.org) do\n\n```bash\n$ npm install isarray\n```\n\nThen bundle for the browser with\n[browserify](https://github.com/substack/browserify).\n\nWith [component](http://component.io) do\n\n```bash\n$ component install juliangruber/isarray\n```\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the "Software"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n',
40246 silly install resolved readmeFilename: 'README.md',
40246 silly install resolved bugs: { url: 'https://github.com/juliangruber/isarray/issues' },
40246 silly install resolved _id: 'isarray@0.0.1',
40246 silly install resolved _shasum: '8a18acfca9a8f4177e09abfc6038939b05d1eedf',
40246 silly install resolved _resolved: 'https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz',
40246 silly install resolved _from: 'https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz' },
40246 silly install resolved { name: 'inherits',
40246 silly install resolved description: 'Browser-friendly inheritance fully compatible with standard node.js inherits()',
40246 silly install resolved version: '2.0.1',
40246 silly install resolved keywords:
40246 silly install resolved [ 'inheritance',
40246 silly install resolved 'class',
40246 silly install resolved 'klass',
40246 silly install resolved 'oop',
40246 silly install resolved 'object-oriented',
40246 silly install resolved 'inherits',
40246 silly install resolved 'browser',
40246 silly install resolved 'browserify' ],
40246 silly install resolved main: './inherits.js',
40246 silly install resolved browser: './inherits_browser.js',
40246 silly install resolved repository: { type: 'git', url: 'git://github.com/isaacs/inherits.git' },
40246 silly install resolved license: 'ISC',
40246 silly install resolved scripts: { test: 'node test' },
40246 silly install resolved readme: 'Browser-friendly inheritance fully compatible with standard node.js\n[inherits](http://nodejs.org/api/util.html#util_util_inherits_constructor_superconstructor).\n\nThis package exports standard `inherits` from node.js `util` module in\nnode environment, but also provides alternative browser-friendly\nimplementation through [browser\nfield](https://gist.github.com/shtylman/4339901). Alternative\nimplementation is a literal copy of standard one located in standalone\nmodule to avoid requiring of `util`. It also has a shim for old\nbrowsers with no `Object.create` support.\n\nWhile keeping you sure you are using standard `inherits`\nimplementation in node.js environment, it allows bundlers such as\n[browserify](https://github.com/substack/node-browserify) to not\ninclude full `util` package to your client code if all you need is\njust `inherits` function. It worth, because browser shim for `util`\npackage is large and `inherits` is often the single function you need\nfrom it.\n\nIt\'s recommended to use this package instead of\n`require(\'util\').inherits` for any code that has chances to be used\nnot only in node.js but in browser too.\n\n## usage\n\n```js\nvar inherits = require(\'inherits\');\n// then use exactly as the standard one\n```\n\n## note on version ~1.0\n\nVersion ~1.0 had completely different motivation and is not compatible\nneither with 2.0 nor with standard node.js `inherits`.\n\nIf you are using version ~1.0 and planning to switch to ~2.0, be\ncareful:\n\n* new version uses `super_` instead of `super` for referencing\n superclass\n* new version overwrites current prototype while old one preserves any\n existing fields on it\n',
40246 silly install resolved readmeFilename: 'README.md',
40246 silly install resolved bugs: { url: 'https://github.com/isaacs/inherits/issues' },
40246 silly install resolved homepage: 'https://github.com/isaacs/inherits#readme',
40246 silly install resolved _id: 'inherits@2.0.1',
40246 silly install resolved _shasum: 'b17d08d326b4423e568eff719f91b0b1cbdf69f1',
40246 silly install resolved _resolved: 'https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz',
40246 silly install resolved _from: 'https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz' },
40246 silly install resolved { name: 'string_decoder',
40246 silly install resolved version: '0.10.31',
40246 silly install resolved description: 'The string_decoder module from Node core',
40246 silly install resolved main: 'index.js',
40246 silly install resolved dependencies: {},
40246 silly install resolved devDependencies: { tap: '~0.4.8' },
40246 silly install resolved scripts: { test: 'tap test/simple/*.js' },
40246 silly install resolved repository:
40246 silly install resolved { type: 'git',
40246 silly install resolved url: 'git://github.com/rvagg/string_decoder.git' },
40246 silly install resolved homepage: 'https://github.com/rvagg/string_decoder',
40246 silly install resolved keywords: [ 'string', 'decoder', 'browser', 'browserify' ],
40246 silly install resolved license: 'MIT',
40246 silly install resolved readme: '**string_decoder.js** (`require(\'string_decoder\')`) from Node.js core\n\nCopyright Joyent, Inc. and other Node contributors. See LICENCE file for details.\n\nVersion numbers match the versions found in Node core, e.g. 0.10.24 matches Node 0.10.24, likewise 0.11.10 matches Node 0.11.10. **Prefer the stable version over the unstable.**\n\nThe *build/* directory contains a build script that will scrape the source from the [joyent/node](https://github.com/joyent/node) repo given a specific Node version.',
40246 silly install resolved readmeFilename: 'README.md',
40246 silly install resolved bugs: { url: 'https://github.com/rvagg/string_decoder/issues' },
40246 silly install resolved _id: 'string_decoder@0.10.31',
40246 silly install resolved _shasum: '62e203bc41766c6c28c9fc84301dab1c5310fa94',
40246 silly install resolved _resolved: 'https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz',
40246 silly install resolved _from: 'https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz' } ]
40247 info install core-util-is@1.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40248 info install isarray@0.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40249 info install inherits@2.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40250 info install string_decoder@0.10.31 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40251 info installOne core-util-is@1.0.1
40252 verbose installOne of core-util-is to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream not in flight; installing
40253 info installOne isarray@0.0.1
40254 verbose installOne of isarray to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream not in flight; installing
40255 info installOne inherits@2.0.1
40256 verbose installOne of inherits to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream not in flight; installing
40257 info installOne string_decoder@0.10.31
40258 verbose installOne of string_decoder to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream not in flight; installing
40259 silly gunzTarPerm extractEntry src/core/linq/observable/_lastordefault.js
40260 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_lastordefault.js', 438, 436 ]
40261 silly gunzTarPerm extractEntry internal/baseEachRight.js
40262 silly gunzTarPerm modified mode [ 'internal/baseEachRight.js', 420, 436 ]
40263 silly gunzTarPerm extractEntry internal/isSpace.js
40264 silly gunzTarPerm modified mode [ 'internal/isSpace.js', 420, 436 ]
40265 silly cache add args [ 'domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40265 silly cache add null ]
40266 verbose cache add spec domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40267 silly cache add args [ 'entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
40267 silly cache add null ]
40268 verbose cache add spec entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz
40269 silly cache add parsed spec Result {
40269 silly cache add raw: 'domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40269 silly cache add scope: null,
40269 silly cache add name: 'domelementtype',
40269 silly cache add rawSpec: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40269 silly cache add spec: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40269 silly cache add type: 'remote' }
40270 silly mapToRegistry name domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40271 silly mapToRegistry using default registry
40272 silly mapToRegistry registry https://registry.npmjs.org/
40273 silly mapToRegistry uri https://registry.npmjs.org/domelementtype@https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40274 verbose addRemoteTarball https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz not in flight; adding
40275 verbose addRemoteTarball [ 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
40275 verbose addRemoteTarball null ]
40276 silly cache add parsed spec Result {
40276 silly cache add raw: 'entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
40276 silly cache add scope: null,
40276 silly cache add name: 'entities',
40276 silly cache add rawSpec: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
40276 silly cache add spec: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
40276 silly cache add type: 'remote' }
40277 silly mapToRegistry name entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz
40278 silly mapToRegistry using default registry
40279 silly mapToRegistry registry https://registry.npmjs.org/
40280 silly mapToRegistry uri https://registry.npmjs.org/entities@https://registry.npmjs.org/entities/-/entities-1.1.1.tgz
40281 verbose addRemoteTarball https://registry.npmjs.org/entities/-/entities-1.1.1.tgz not in flight; adding
40282 verbose addRemoteTarball [ 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
40282 verbose addRemoteTarball null ]
40283 verbose lock using /home/lukas/.npm/_locks/isarray-416494f383cca3ea.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40284 verbose lock using /home/lukas/.npm/_locks/inherits-3ab92fd694fe8d96.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40285 verbose lock using /home/lukas/.npm/_locks/core-util-is-24b11c61ac4e560a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40286 verbose lock using /home/lukas/.npm/_locks/string-decoder-c2159730c91f2344.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40287 silly install write writing isarray 0.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40288 silly install write writing inherits 2.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40289 silly install write writing core-util-is 1.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40290 silly install write writing string_decoder 0.10.31 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40291 info retry fetch attempt 1 at 9:02:46 PM
40292 info attempt registry request try #1 at 9:02:46 PM
40293 http fetch GET https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40294 silly gunzTarPerm extractEntry array/#/values/index.js
40295 silly gunzTarPerm modified mode [ 'array/#/values/index.js', 420, 436 ]
40296 silly gunzTarPerm extractEntry array/#/values/is-implemented.js
40297 silly gunzTarPerm modified mode [ 'array/#/values/is-implemented.js', 420, 436 ]
40298 info retry fetch attempt 1 at 9:02:46 PM
40299 info attempt registry request try #1 at 9:02:46 PM
40300 http fetch GET https://registry.npmjs.org/entities/-/entities-1.1.1.tgz
40301 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40302 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40303 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40304 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40305 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithtimeorcount.js
40306 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithtimeorcount.js', 438, 436 ]
40307 silly gunzTarPerm extractEntry src/core/linq/observable/_firstordefault.js
40308 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_firstordefault.js', 438, 436 ]
40309 silly gunzTarPerm extractEntry src/core/linq/observable/withlatestfrom.js
40310 silly gunzTarPerm modified mode [ 'src/core/linq/observable/withlatestfrom.js', 438, 436 ]
40311 silly gunzTarPerm extractEntry internal/baseEach.js
40312 silly gunzTarPerm modified mode [ 'internal/baseEach.js', 420, 436 ]
40313 silly gunzTarPerm extractEntry internal/isStrictComparable.js
40314 silly gunzTarPerm modified mode [ 'internal/isStrictComparable.js', 420, 436 ]
40315 http fetch 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40316 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray is being purged from base /home/lukas/ffsync/fxa-auth-server
40317 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40318 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits is being purged from base /home/lukas/ffsync/fxa-auth-server
40319 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40320 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is is being purged from base /home/lukas/ffsync/fxa-auth-server
40321 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40322 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder is being purged from base /home/lukas/ffsync/fxa-auth-server
40323 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40324 verbose tar unpack /home/lukas/.npm/isarray/0.0.1/package.tgz
40325 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40326 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray is being purged
40327 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40328 verbose tar unpack /home/lukas/.npm/inherits/2.0.1/package.tgz
40329 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40330 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits is being purged
40331 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40332 verbose tar unpack /home/lukas/.npm/core-util-is/1.0.1/package.tgz
40333 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40334 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is is being purged
40335 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40336 verbose tar unpack /home/lukas/.npm/string_decoder/0.10.31/package.tgz
40337 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40338 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder is being purged
40339 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40340 silly gunzTarPerm extractEntry src/core/linq/observable/_firstonly.js
40341 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_firstonly.js', 438, 436 ]
40342 silly gunzTarPerm extractEntry array/#/values/shim.js
40343 silly gunzTarPerm modified mode [ 'array/#/values/shim.js', 420, 436 ]
40344 silly gunzTarPerm extractEntry boolean/index.js
40345 silly gunzTarPerm modified mode [ 'boolean/index.js', 420, 436 ]
40346 silly gunzTarPerm modes [ '775', '664' ]
40347 silly gunzTarPerm modes [ '775', '664' ]
40348 silly gunzTarPerm modes [ '775', '664' ]
40349 silly gunzTarPerm modes [ '775', '664' ]
40350 silly cache afterAdd es6-set@0.1.1
40351 verbose afterAdd /home/lukas/.npm/es6-set/0.1.1/package/package.json not in flight; writing
40352 silly gunzTarPerm extractEntry src/core/linq/observable/zip.js
40353 silly gunzTarPerm modified mode [ 'src/core/linq/observable/zip.js', 438, 436 ]
40354 silly gunzTarPerm extractEntry src/core/linq/observable/_findvalue.js
40355 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_findvalue.js', 438, 436 ]
40356 silly fetchAndShaCheck shasum 04e6926f662895354f3dd015203633b857297e2c
40357 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz not in flight; adding
40358 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40359 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
40360 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-9882f8fb94b3
40361 silly gentlyRm /tmp/npm-30115-af71656d/unpack-9882f8fb94b3 is being purged
40362 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-9882f8fb94b3
40363 silly gunzTarPerm extractEntry package.json
40364 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
40365 verbose afterAdd /home/lukas/.npm/es6-set/0.1.1/package/package.json written
40366 silly gunzTarPerm extractEntry src/core/linq/observable/ziparray.js
40367 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ziparray.js', 438, 436 ]
40368 silly gunzTarPerm modes [ '775', '664' ]
40369 silly gunzTarPerm extractEntry package.json
40370 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
40371 silly gunzTarPerm extractEntry package.json
40372 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
40373 silly gunzTarPerm extractEntry package.json
40374 silly gunzTarPerm extractEntry internal/baseDifference.js
40375 silly gunzTarPerm modified mode [ 'internal/baseDifference.js', 420, 436 ]
40376 silly gunzTarPerm extractEntry internal/lazyClone.js
40377 silly gunzTarPerm modified mode [ 'internal/lazyClone.js', 420, 436 ]
40378 silly gunzTarPerm extractEntry src/core/linq/observable/_extremaby.js
40379 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_extremaby.js', 438, 436 ]
40380 silly gunzTarPerm extractEntry README.md
40381 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
40382 silly gunzTarPerm extractEntry index.js
40383 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
40384 silly gunzTarPerm extractEntry src/core/linq/observable/zipproto.js
40385 silly gunzTarPerm modified mode [ 'src/core/linq/observable/zipproto.js', 438, 436 ]
40386 silly gunzTarPerm extractEntry boolean/is-boolean.js
40387 silly gunzTarPerm modified mode [ 'boolean/is-boolean.js', 420, 436 ]
40388 silly gunzTarPerm extractEntry date/index.js
40389 silly gunzTarPerm modified mode [ 'date/index.js', 420, 436 ]
40390 silly gunzTarPerm extractEntry README.md
40391 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
40392 silly gunzTarPerm extractEntry LICENSE
40393 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
40394 silly gunzTarPerm extractEntry README.md
40395 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
40396 silly gunzTarPerm extractEntry util.js
40397 silly gunzTarPerm modified mode [ 'util.js', 420, 436 ]
40398 silly gunzTarPerm extractEntry .npmignore
40399 silly gunzTarPerm extractEntry README.md
40400 silly gunzTarPerm extractEntry src/core/linq/observable/merge.js
40401 silly gunzTarPerm modified mode [ 'src/core/linq/observable/merge.js', 438, 436 ]
40402 silly gunzTarPerm extractEntry package.json
40403 silly gunzTarPerm extractEntry src/core/longstacktraces/longstackbegin.js
40404 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstackbegin.js', 438, 436 ]
40405 silly gunzTarPerm extractEntry internal/baseDelay.js
40406 silly gunzTarPerm modified mode [ 'internal/baseDelay.js', 420, 436 ]
40407 silly gunzTarPerm extractEntry internal/lazyReverse.js
40408 silly gunzTarPerm modified mode [ 'internal/lazyReverse.js', 420, 436 ]
40409 silly gunzTarPerm extractEntry src/core/longstacktraces/longstackend.js
40410 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstackend.js', 438, 436 ]
40411 silly gunzTarPerm extractEntry .npmignore
40412 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
40413 silly gunzTarPerm extractEntry README.md
40414 silly gunzTarPerm extractEntry src/core/longstacktraces/longstacktraces.js
40415 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstacktraces.js', 438, 436 ]
40416 silly gunzTarPerm extractEntry date/is-date.js
40417 silly gunzTarPerm modified mode [ 'date/is-date.js', 420, 436 ]
40418 silly gunzTarPerm extractEntry date/valid-date.js
40419 silly gunzTarPerm modified mode [ 'date/valid-date.js', 420, 436 ]
40420 silly gunzTarPerm extractEntry build/build.js
40421 silly gunzTarPerm modified mode [ 'build/build.js', 420, 436 ]
40422 silly gunzTarPerm extractEntry component.json
40423 silly gunzTarPerm modified mode [ 'component.json', 420, 436 ]
40424 silly gunzTarPerm extractEntry inherits.js
40425 silly gunzTarPerm modified mode [ 'inherits.js', 420, 436 ]
40426 silly gunzTarPerm extractEntry inherits_browser.js
40427 silly gunzTarPerm modified mode [ 'inherits_browser.js', 420, 436 ]
40428 silly gunzTarPerm extractEntry float.patch
40429 silly gunzTarPerm modified mode [ 'float.patch', 420, 436 ]
40430 silly gunzTarPerm extractEntry lib/util.js
40431 silly gunzTarPerm modified mode [ 'lib/util.js', 420, 436 ]
40432 silly gunzTarPerm extractEntry LICENSE
40433 silly gunzTarPerm extractEntry index.js
40434 silly gunzTarPerm extractEntry internal/baseCreate.js
40435 silly gunzTarPerm modified mode [ 'internal/baseCreate.js', 420, 436 ]
40436 silly gunzTarPerm extractEntry internal/lazyValue.js
40437 silly gunzTarPerm modified mode [ 'internal/lazyValue.js', 420, 436 ]
40438 silly gunzTarPerm extractEntry internal/baseCopy.js
40439 silly gunzTarPerm modified mode [ 'internal/baseCopy.js', 420, 436 ]
40440 silly gunzTarPerm extractEntry internal/mapDelete.js
40441 silly gunzTarPerm modified mode [ 'internal/mapDelete.js', 420, 436 ]
40442 silly gunzTarPerm extractEntry internal/baseCompareAscending.js
40443 silly gunzTarPerm modified mode [ 'internal/baseCompareAscending.js', 420, 436 ]
40444 silly gunzTarPerm extractEntry internal/mapGet.js
40445 silly gunzTarPerm modified mode [ 'internal/mapGet.js', 420, 436 ]
40446 silly gunzTarPerm extractEntry internal/baseClone.js
40447 silly gunzTarPerm modified mode [ 'internal/baseClone.js', 420, 436 ]
40448 silly gunzTarPerm extractEntry internal/mapHas.js
40449 silly gunzTarPerm modified mode [ 'internal/mapHas.js', 420, 436 ]
40450 silly gunzTarPerm extractEntry internal/baseCallback.js
40451 silly gunzTarPerm modified mode [ 'internal/baseCallback.js', 420, 436 ]
40452 silly gunzTarPerm extractEntry internal/mapSet.js
40453 silly gunzTarPerm modified mode [ 'internal/mapSet.js', 420, 436 ]
40454 silly gunzTarPerm extractEntry internal/baseAt.js
40455 silly gunzTarPerm modified mode [ 'internal/baseAt.js', 420, 436 ]
40456 silly gunzTarPerm extractEntry internal/mergeData.js
40457 silly gunzTarPerm modified mode [ 'internal/mergeData.js', 420, 436 ]
40458 silly gunzTarPerm extractEntry internal/baseAssign.js
40459 silly gunzTarPerm modified mode [ 'internal/baseAssign.js', 420, 436 ]
40460 silly gunzTarPerm extractEntry internal/mergeDefaults.js
40461 silly gunzTarPerm modified mode [ 'internal/mergeDefaults.js', 420, 436 ]
40462 silly gunzTarPerm extractEntry internal/assignWith.js
40463 silly gunzTarPerm modified mode [ 'internal/assignWith.js', 420, 436 ]
40464 silly gunzTarPerm extractEntry internal/metaMap.js
40465 silly gunzTarPerm modified mode [ 'internal/metaMap.js', 420, 436 ]
40466 silly gunzTarPerm extractEntry internal/assignOwnDefaults.js
40467 silly gunzTarPerm modified mode [ 'internal/assignOwnDefaults.js', 420, 436 ]
40468 silly gunzTarPerm extractEntry internal/pickByArray.js
40469 silly gunzTarPerm modified mode [ 'internal/pickByArray.js', 420, 436 ]
40470 silly gunzTarPerm extractEntry internal/assignDefaults.js
40471 silly gunzTarPerm modified mode [ 'internal/assignDefaults.js', 420, 436 ]
40472 silly gunzTarPerm extractEntry internal/pickByCallback.js
40473 silly gunzTarPerm modified mode [ 'internal/pickByCallback.js', 420, 436 ]
40474 silly gunzTarPerm extractEntry internal/arraySum.js
40475 silly gunzTarPerm modified mode [ 'internal/arraySum.js', 420, 436 ]
40476 silly gunzTarPerm extractEntry internal/reEscape.js
40477 silly gunzTarPerm modified mode [ 'internal/reEscape.js', 420, 436 ]
40478 silly gunzTarPerm extractEntry internal/arraySome.js
40479 silly gunzTarPerm modified mode [ 'internal/arraySome.js', 420, 436 ]
40480 silly gunzTarPerm extractEntry internal/reEvaluate.js
40481 silly gunzTarPerm modified mode [ 'internal/reEvaluate.js', 420, 436 ]
40482 silly gunzTarPerm extractEntry internal/arrayReduceRight.js
40483 silly gunzTarPerm modified mode [ 'internal/arrayReduceRight.js', 420, 436 ]
40484 silly gunzTarPerm extractEntry internal/reInterpolate.js
40485 silly gunzTarPerm modified mode [ 'internal/reInterpolate.js', 420, 436 ]
40486 silly gunzTarPerm extractEntry internal/arrayReduce.js
40487 silly gunzTarPerm modified mode [ 'internal/arrayReduce.js', 420, 436 ]
40488 silly gunzTarPerm extractEntry internal/realNames.js
40489 silly gunzTarPerm modified mode [ 'internal/realNames.js', 420, 436 ]
40490 silly gunzTarPerm extractEntry internal/arrayPush.js
40491 silly gunzTarPerm modified mode [ 'internal/arrayPush.js', 420, 436 ]
40492 silly gunzTarPerm extractEntry internal/reorder.js
40493 silly gunzTarPerm modified mode [ 'internal/reorder.js', 420, 436 ]
40494 silly gunzTarPerm extractEntry internal/arrayMap.js
40495 silly gunzTarPerm modified mode [ 'internal/arrayMap.js', 420, 436 ]
40496 silly gunzTarPerm extractEntry internal/replaceHolders.js
40497 silly gunzTarPerm modified mode [ 'internal/replaceHolders.js', 420, 436 ]
40498 silly gunzTarPerm extractEntry internal/arrayFilter.js
40499 silly gunzTarPerm modified mode [ 'internal/arrayFilter.js', 420, 436 ]
40500 silly gunzTarPerm extractEntry internal/setData.js
40501 silly gunzTarPerm modified mode [ 'internal/setData.js', 420, 436 ]
40502 silly gunzTarPerm extractEntry internal/arrayExtremum.js
40503 silly gunzTarPerm modified mode [ 'internal/arrayExtremum.js', 420, 436 ]
40504 silly gunzTarPerm extractEntry internal/shimKeys.js
40505 silly gunzTarPerm modified mode [ 'internal/shimKeys.js', 420, 436 ]
40506 silly gunzTarPerm extractEntry internal/arrayEvery.js
40507 silly gunzTarPerm modified mode [ 'internal/arrayEvery.js', 420, 436 ]
40508 silly gunzTarPerm extractEntry internal/sortedUniq.js
40509 silly gunzTarPerm modified mode [ 'internal/sortedUniq.js', 420, 436 ]
40510 silly gunzTarPerm extractEntry internal/arrayEachRight.js
40511 silly gunzTarPerm modified mode [ 'internal/arrayEachRight.js', 420, 436 ]
40512 silly gunzTarPerm extractEntry internal/toIterable.js
40513 silly gunzTarPerm modified mode [ 'internal/toIterable.js', 420, 436 ]
40514 silly gunzTarPerm extractEntry internal/arrayEach.js
40515 silly gunzTarPerm modified mode [ 'internal/arrayEach.js', 420, 436 ]
40516 silly gunzTarPerm extractEntry internal/toObject.js
40517 silly gunzTarPerm modified mode [ 'internal/toObject.js', 420, 436 ]
40518 silly gunzTarPerm extractEntry internal/arrayCopy.js
40519 silly gunzTarPerm modified mode [ 'internal/arrayCopy.js', 420, 436 ]
40520 silly gunzTarPerm extractEntry internal/toPath.js
40521 silly gunzTarPerm modified mode [ 'internal/toPath.js', 420, 436 ]
40522 silly gunzTarPerm extractEntry internal/arrayConcat.js
40523 silly gunzTarPerm modified mode [ 'internal/arrayConcat.js', 420, 436 ]
40524 silly gunzTarPerm extractEntry internal/trimmedLeftIndex.js
40525 silly gunzTarPerm modified mode [ 'internal/trimmedLeftIndex.js', 420, 436 ]
40526 silly gunzTarPerm extractEntry internal/SetCache.js
40527 silly gunzTarPerm modified mode [ 'internal/SetCache.js', 420, 436 ]
40528 silly gunzTarPerm extractEntry internal/trimmedRightIndex.js
40529 silly gunzTarPerm modified mode [ 'internal/trimmedRightIndex.js', 420, 436 ]
40530 silly gunzTarPerm extractEntry internal/MapCache.js
40531 silly gunzTarPerm modified mode [ 'internal/MapCache.js', 420, 436 ]
40532 silly gunzTarPerm extractEntry internal/unescapeHtmlChar.js
40533 silly gunzTarPerm modified mode [ 'internal/unescapeHtmlChar.js', 420, 436 ]
40534 silly gunzTarPerm extractEntry internal/LodashWrapper.js
40535 silly gunzTarPerm modified mode [ 'internal/LodashWrapper.js', 420, 436 ]
40536 silly gunzTarPerm extractEntry internal/wrapperClone.js
40537 silly gunzTarPerm modified mode [ 'internal/wrapperClone.js', 420, 436 ]
40538 silly gunzTarPerm extractEntry internal/composeArgsRight.js
40539 silly gunzTarPerm modified mode [ 'internal/composeArgsRight.js', 420, 436 ]
40540 silly gunzTarPerm extractEntry string/camelCase.js
40541 silly gunzTarPerm modified mode [ 'string/camelCase.js', 420, 436 ]
40542 silly gunzTarPerm extractEntry string/padLeft.js
40543 silly gunzTarPerm modified mode [ 'string/padLeft.js', 420, 436 ]
40544 silly gunzTarPerm extractEntry string/padRight.js
40545 silly gunzTarPerm modified mode [ 'string/padRight.js', 420, 436 ]
40546 silly gunzTarPerm extractEntry string/parseInt.js
40547 silly gunzTarPerm modified mode [ 'string/parseInt.js', 420, 436 ]
40548 silly gunzTarPerm extractEntry string/pad.js
40549 silly gunzTarPerm modified mode [ 'string/pad.js', 420, 436 ]
40550 silly gunzTarPerm extractEntry string/snakeCase.js
40551 silly gunzTarPerm modified mode [ 'string/snakeCase.js', 420, 436 ]
40552 silly gunzTarPerm extractEntry string/startCase.js
40553 silly gunzTarPerm modified mode [ 'string/startCase.js', 420, 436 ]
40554 silly gunzTarPerm extractEntry string/startsWith.js
40555 silly gunzTarPerm modified mode [ 'string/startsWith.js', 420, 436 ]
40556 silly gunzTarPerm extractEntry string/template.js
40557 silly gunzTarPerm modified mode [ 'string/template.js', 420, 436 ]
40558 silly gunzTarPerm extractEntry string/templateSettings.js
40559 silly gunzTarPerm modified mode [ 'string/templateSettings.js', 420, 436 ]
40560 silly gunzTarPerm extractEntry string/kebabCase.js
40561 silly gunzTarPerm modified mode [ 'string/kebabCase.js', 420, 436 ]
40562 silly gunzTarPerm extractEntry string/trim.js
40563 silly gunzTarPerm modified mode [ 'string/trim.js', 420, 436 ]
40564 silly gunzTarPerm extractEntry string/escapeRegExp.js
40565 silly gunzTarPerm modified mode [ 'string/escapeRegExp.js', 420, 436 ]
40566 silly gunzTarPerm extractEntry string/trimLeft.js
40567 silly gunzTarPerm modified mode [ 'string/trimLeft.js', 420, 436 ]
40568 silly gunzTarPerm extractEntry string/escape.js
40569 silly gunzTarPerm modified mode [ 'string/escape.js', 420, 436 ]
40570 silly gunzTarPerm extractEntry string/trimRight.js
40571 silly gunzTarPerm modified mode [ 'string/trimRight.js', 420, 436 ]
40572 silly gunzTarPerm extractEntry string/endsWith.js
40573 silly gunzTarPerm modified mode [ 'string/endsWith.js', 420, 436 ]
40574 silly gunzTarPerm extractEntry string/trunc.js
40575 silly gunzTarPerm modified mode [ 'string/trunc.js', 420, 436 ]
40576 silly gunzTarPerm extractEntry string/deburr.js
40577 silly gunzTarPerm modified mode [ 'string/deburr.js', 420, 436 ]
40578 silly gunzTarPerm extractEntry string/unescape.js
40579 silly gunzTarPerm modified mode [ 'string/unescape.js', 420, 436 ]
40580 silly gunzTarPerm extractEntry string/capitalize.js
40581 silly gunzTarPerm modified mode [ 'string/capitalize.js', 420, 436 ]
40582 silly gunzTarPerm extractEntry string/words.js
40583 silly gunzTarPerm modified mode [ 'string/words.js', 420, 436 ]
40584 silly gunzTarPerm extractEntry string/repeat.js
40585 silly gunzTarPerm modified mode [ 'string/repeat.js', 420, 436 ]
40586 silly gunzTarPerm extractEntry chain/chain.js
40587 silly gunzTarPerm modified mode [ 'chain/chain.js', 420, 436 ]
40588 silly gunzTarPerm extractEntry chain/run.js
40589 silly gunzTarPerm modified mode [ 'chain/run.js', 420, 436 ]
40590 silly gunzTarPerm extractEntry chain/tap.js
40591 silly gunzTarPerm modified mode [ 'chain/tap.js', 420, 436 ]
40592 silly gunzTarPerm extractEntry chain/thru.js
40593 silly gunzTarPerm modified mode [ 'chain/thru.js', 420, 436 ]
40594 silly gunzTarPerm extractEntry chain/toJSON.js
40595 silly gunzTarPerm modified mode [ 'chain/toJSON.js', 420, 436 ]
40596 silly gunzTarPerm extractEntry chain/reverse.js
40597 silly gunzTarPerm modified mode [ 'chain/reverse.js', 420, 436 ]
40598 silly gunzTarPerm extractEntry chain/value.js
40599 silly gunzTarPerm modified mode [ 'chain/value.js', 420, 436 ]
40600 silly gunzTarPerm extractEntry chain/valueOf.js
40601 silly gunzTarPerm modified mode [ 'chain/valueOf.js', 420, 436 ]
40602 silly gunzTarPerm extractEntry chain/wrapperChain.js
40603 silly gunzTarPerm modified mode [ 'chain/wrapperChain.js', 420, 436 ]
40604 silly gunzTarPerm extractEntry chain/wrapperCommit.js
40605 silly gunzTarPerm modified mode [ 'chain/wrapperCommit.js', 420, 436 ]
40606 silly gunzTarPerm extractEntry chain/wrapperConcat.js
40607 silly gunzTarPerm modified mode [ 'chain/wrapperConcat.js', 420, 436 ]
40608 silly gunzTarPerm extractEntry chain/plant.js
40609 silly gunzTarPerm modified mode [ 'chain/plant.js', 420, 436 ]
40610 silly gunzTarPerm extractEntry chain/wrapperPlant.js
40611 silly gunzTarPerm modified mode [ 'chain/wrapperPlant.js', 420, 436 ]
40612 silly gunzTarPerm extractEntry chain/lodash.js
40613 silly gunzTarPerm modified mode [ 'chain/lodash.js', 420, 436 ]
40614 silly gunzTarPerm extractEntry chain/wrapperReverse.js
40615 silly gunzTarPerm modified mode [ 'chain/wrapperReverse.js', 420, 436 ]
40616 silly gunzTarPerm extractEntry chain/concat.js
40617 silly gunzTarPerm modified mode [ 'chain/concat.js', 420, 436 ]
40618 silly gunzTarPerm extractEntry chain/wrapperToString.js
40619 silly gunzTarPerm modified mode [ 'chain/wrapperToString.js', 420, 436 ]
40620 silly gunzTarPerm extractEntry chain/commit.js
40621 silly gunzTarPerm modified mode [ 'chain/commit.js', 420, 436 ]
40622 silly gunzTarPerm extractEntry chain/wrapperValue.js
40623 silly gunzTarPerm modified mode [ 'chain/wrapperValue.js', 420, 436 ]
40624 silly gunzTarPerm extractEntry chain/toString.js
40625 silly gunzTarPerm modified mode [ 'chain/toString.js', 420, 436 ]
40626 silly gunzTarPerm extractEntry array/chunk.js
40627 silly gunzTarPerm modified mode [ 'array/chunk.js', 420, 436 ]
40628 silly gunzTarPerm extractEntry array/last.js
40629 silly gunzTarPerm modified mode [ 'array/last.js', 420, 436 ]
40630 silly gunzTarPerm extractEntry array/lastIndexOf.js
40631 silly gunzTarPerm modified mode [ 'array/lastIndexOf.js', 420, 436 ]
40632 silly gunzTarPerm extractEntry array/object.js
40633 silly gunzTarPerm modified mode [ 'array/object.js', 420, 436 ]
40634 silly gunzTarPerm extractEntry array/pull.js
40635 silly gunzTarPerm modified mode [ 'array/pull.js', 420, 436 ]
40636 silly gunzTarPerm extractEntry array/intersection.js
40637 silly gunzTarPerm modified mode [ 'array/intersection.js', 420, 436 ]
40638 silly gunzTarPerm extractEntry array/remove.js
40639 silly gunzTarPerm modified mode [ 'array/remove.js', 420, 436 ]
40640 silly gunzTarPerm extractEntry array/rest.js
40641 silly gunzTarPerm modified mode [ 'array/rest.js', 420, 436 ]
40642 silly gunzTarPerm extractEntry array/slice.js
40643 silly gunzTarPerm modified mode [ 'array/slice.js', 420, 436 ]
40644 silly gunzTarPerm extractEntry array/sortedIndex.js
40645 silly gunzTarPerm modified mode [ 'array/sortedIndex.js', 420, 436 ]
40646 silly gunzTarPerm extractEntry array/sortedLastIndex.js
40647 silly gunzTarPerm modified mode [ 'array/sortedLastIndex.js', 420, 436 ]
40648 silly gunzTarPerm extractEntry array/initial.js
40649 silly gunzTarPerm modified mode [ 'array/initial.js', 420, 436 ]
40650 silly gunzTarPerm extractEntry array/tail.js
40651 silly gunzTarPerm modified mode [ 'array/tail.js', 420, 436 ]
40652 silly gunzTarPerm extractEntry array/indexOf.js
40653 silly gunzTarPerm modified mode [ 'array/indexOf.js', 420, 436 ]
40654 silly gunzTarPerm extractEntry array/take.js
40655 silly gunzTarPerm modified mode [ 'array/take.js', 420, 436 ]
40656 silly gunzTarPerm extractEntry array/head.js
40657 silly gunzTarPerm modified mode [ 'array/head.js', 420, 436 ]
40658 silly gunzTarPerm extractEntry array/takeRight.js
40659 silly gunzTarPerm modified mode [ 'array/takeRight.js', 420, 436 ]
40660 silly gunzTarPerm extractEntry array/flattenDeep.js
40661 silly gunzTarPerm modified mode [ 'array/flattenDeep.js', 420, 436 ]
40662 silly gunzTarPerm extractEntry array/takeRightWhile.js
40663 silly gunzTarPerm modified mode [ 'array/takeRightWhile.js', 420, 436 ]
40664 silly gunzTarPerm extractEntry array/flatten.js
40665 silly gunzTarPerm modified mode [ 'array/flatten.js', 420, 436 ]
40666 silly gunzTarPerm extractEntry array/takeWhile.js
40667 silly gunzTarPerm modified mode [ 'array/takeWhile.js', 420, 436 ]
40668 silly gunzTarPerm extractEntry array/first.js
40669 silly gunzTarPerm modified mode [ 'array/first.js', 420, 436 ]
40670 silly gunzTarPerm extractEntry array/union.js
40671 silly gunzTarPerm modified mode [ 'array/union.js', 420, 436 ]
40672 silly gunzTarPerm extractEntry array/findLastIndex.js
40673 silly gunzTarPerm modified mode [ 'array/findLastIndex.js', 420, 436 ]
40674 silly gunzTarPerm extractEntry array/uniq.js
40675 silly gunzTarPerm modified mode [ 'array/uniq.js', 420, 436 ]
40676 silly gunzTarPerm extractEntry array/findIndex.js
40677 silly gunzTarPerm modified mode [ 'array/findIndex.js', 420, 436 ]
40678 silly gunzTarPerm extractEntry array/unique.js
40679 silly gunzTarPerm modified mode [ 'array/unique.js', 420, 436 ]
40680 silly gunzTarPerm extractEntry array/fill.js
40681 silly gunzTarPerm modified mode [ 'array/fill.js', 420, 436 ]
40682 silly gunzTarPerm extractEntry array/unzip.js
40683 silly gunzTarPerm modified mode [ 'array/unzip.js', 420, 436 ]
40684 silly gunzTarPerm extractEntry array/dropWhile.js
40685 silly gunzTarPerm modified mode [ 'array/dropWhile.js', 420, 436 ]
40686 silly gunzTarPerm extractEntry array/unzipWith.js
40687 silly gunzTarPerm modified mode [ 'array/unzipWith.js', 420, 436 ]
40688 silly gunzTarPerm extractEntry array/dropRightWhile.js
40689 silly gunzTarPerm modified mode [ 'array/dropRightWhile.js', 420, 436 ]
40690 silly gunzTarPerm extractEntry array/without.js
40691 silly gunzTarPerm modified mode [ 'array/without.js', 420, 436 ]
40692 silly gunzTarPerm extractEntry array/dropRight.js
40693 silly gunzTarPerm modified mode [ 'array/dropRight.js', 420, 436 ]
40694 silly gunzTarPerm extractEntry array/xor.js
40695 silly gunzTarPerm modified mode [ 'array/xor.js', 420, 436 ]
40696 silly gunzTarPerm extractEntry array/drop.js
40697 silly gunzTarPerm modified mode [ 'array/drop.js', 420, 436 ]
40698 silly gunzTarPerm extractEntry array/zip.js
40699 silly gunzTarPerm modified mode [ 'array/zip.js', 420, 436 ]
40700 silly gunzTarPerm extractEntry array/difference.js
40701 silly gunzTarPerm modified mode [ 'array/difference.js', 420, 436 ]
40702 silly gunzTarPerm extractEntry array/zipObject.js
40703 silly gunzTarPerm modified mode [ 'array/zipObject.js', 420, 436 ]
40704 silly gunzTarPerm extractEntry array/compact.js
40705 silly gunzTarPerm modified mode [ 'array/compact.js', 420, 436 ]
40706 silly gunzTarPerm extractEntry array/zipWith.js
40707 silly gunzTarPerm modified mode [ 'array/zipWith.js', 420, 436 ]
40708 silly gunzTarPerm extractEntry array/pullAt.js
40709 silly gunzTarPerm modified mode [ 'array/pullAt.js', 420, 436 ]
40710 silly gunzTarPerm extractEntry utility/attempt.js
40711 silly gunzTarPerm modified mode [ 'utility/attempt.js', 420, 436 ]
40712 silly gunzTarPerm extractEntry utility/iteratee.js
40713 silly gunzTarPerm modified mode [ 'utility/iteratee.js', 420, 436 ]
40714 silly gunzTarPerm extractEntry utility/matches.js
40715 silly gunzTarPerm modified mode [ 'utility/matches.js', 420, 436 ]
40716 silly gunzTarPerm extractEntry utility/matchesProperty.js
40717 silly gunzTarPerm modified mode [ 'utility/matchesProperty.js', 420, 436 ]
40718 silly gunzTarPerm extractEntry utility/method.js
40719 silly gunzTarPerm modified mode [ 'utility/method.js', 420, 436 ]
40720 silly gunzTarPerm extractEntry utility/identity.js
40721 silly gunzTarPerm modified mode [ 'utility/identity.js', 420, 436 ]
40722 silly gunzTarPerm extractEntry utility/mixin.js
40723 silly gunzTarPerm modified mode [ 'utility/mixin.js', 420, 436 ]
40724 silly gunzTarPerm extractEntry utility/noop.js
40725 silly gunzTarPerm modified mode [ 'utility/noop.js', 420, 436 ]
40726 silly gunzTarPerm extractEntry utility/property.js
40727 silly gunzTarPerm modified mode [ 'utility/property.js', 420, 436 ]
40728 silly gunzTarPerm extractEntry utility/propertyOf.js
40729 silly gunzTarPerm modified mode [ 'utility/propertyOf.js', 420, 436 ]
40730 silly gunzTarPerm extractEntry utility/range.js
40731 silly gunzTarPerm modified mode [ 'utility/range.js', 420, 436 ]
40732 silly gunzTarPerm extractEntry utility/constant.js
40733 silly gunzTarPerm modified mode [ 'utility/constant.js', 420, 436 ]
40734 silly gunzTarPerm extractEntry utility/times.js
40735 silly gunzTarPerm modified mode [ 'utility/times.js', 420, 436 ]
40736 silly gunzTarPerm extractEntry utility/callback.js
40737 silly gunzTarPerm modified mode [ 'utility/callback.js', 420, 436 ]
40738 silly gunzTarPerm extractEntry utility/uniqueId.js
40739 silly gunzTarPerm modified mode [ 'utility/uniqueId.js', 420, 436 ]
40740 silly gunzTarPerm extractEntry utility/methodOf.js
40741 silly gunzTarPerm modified mode [ 'utility/methodOf.js', 420, 436 ]
40742 silly gunzTarPerm extractEntry lang/clone.js
40743 silly gunzTarPerm modified mode [ 'lang/clone.js', 420, 436 ]
40744 silly gunzTarPerm extractEntry lang/isEqual.js
40745 silly gunzTarPerm modified mode [ 'lang/isEqual.js', 420, 436 ]
40746 silly gunzTarPerm extractEntry lang/isError.js
40747 silly gunzTarPerm modified mode [ 'lang/isError.js', 420, 436 ]
40748 silly gunzTarPerm extractEntry lang/isFinite.js
40749 silly gunzTarPerm modified mode [ 'lang/isFinite.js', 420, 436 ]
40750 silly gunzTarPerm extractEntry lang/isFunction.js
40751 silly gunzTarPerm modified mode [ 'lang/isFunction.js', 420, 436 ]
40752 silly gunzTarPerm extractEntry lang/isEmpty.js
40753 silly gunzTarPerm modified mode [ 'lang/isEmpty.js', 420, 436 ]
40754 silly gunzTarPerm extractEntry lang/isNaN.js
40755 silly gunzTarPerm modified mode [ 'lang/isNaN.js', 420, 436 ]
40756 silly gunzTarPerm extractEntry lang/isNative.js
40757 silly gunzTarPerm modified mode [ 'lang/isNative.js', 420, 436 ]
40758 silly gunzTarPerm extractEntry lang/isNull.js
40759 silly gunzTarPerm modified mode [ 'lang/isNull.js', 420, 436 ]
40760 silly gunzTarPerm extractEntry lang/isNumber.js
40761 silly gunzTarPerm modified mode [ 'lang/isNumber.js', 420, 436 ]
40762 silly gunzTarPerm extractEntry lang/isObject.js
40763 silly gunzTarPerm modified mode [ 'lang/isObject.js', 420, 436 ]
40764 silly gunzTarPerm extractEntry lang/isElement.js
40765 silly gunzTarPerm modified mode [ 'lang/isElement.js', 420, 436 ]
40766 silly gunzTarPerm extractEntry lang/isPlainObject.js
40767 silly gunzTarPerm modified mode [ 'lang/isPlainObject.js', 420, 436 ]
40768 silly gunzTarPerm extractEntry lang/isDate.js
40769 silly gunzTarPerm modified mode [ 'lang/isDate.js', 420, 436 ]
40770 silly gunzTarPerm extractEntry lang/isRegExp.js
40771 silly gunzTarPerm modified mode [ 'lang/isRegExp.js', 420, 436 ]
40772 silly gunzTarPerm extractEntry lang/isBoolean.js
40773 silly gunzTarPerm modified mode [ 'lang/isBoolean.js', 420, 436 ]
40774 silly gunzTarPerm extractEntry lang/isString.js
40775 silly gunzTarPerm modified mode [ 'lang/isString.js', 420, 436 ]
40776 silly gunzTarPerm extractEntry lang/isArray.js
40777 silly gunzTarPerm modified mode [ 'lang/isArray.js', 420, 436 ]
40778 silly gunzTarPerm extractEntry lang/isTypedArray.js
40779 silly gunzTarPerm modified mode [ 'lang/isTypedArray.js', 420, 436 ]
40780 silly gunzTarPerm extractEntry lang/isArguments.js
40781 silly gunzTarPerm modified mode [ 'lang/isArguments.js', 420, 436 ]
40782 silly gunzTarPerm extractEntry lang/isUndefined.js
40783 silly gunzTarPerm modified mode [ 'lang/isUndefined.js', 420, 436 ]
40784 silly gunzTarPerm extractEntry lang/gte.js
40785 silly gunzTarPerm modified mode [ 'lang/gte.js', 420, 436 ]
40786 silly gunzTarPerm extractEntry lang/lt.js
40787 silly gunzTarPerm modified mode [ 'lang/lt.js', 420, 436 ]
40788 silly gunzTarPerm extractEntry lang/gt.js
40789 silly gunzTarPerm modified mode [ 'lang/gt.js', 420, 436 ]
40790 silly gunzTarPerm extractEntry lang/lte.js
40791 silly gunzTarPerm modified mode [ 'lang/lte.js', 420, 436 ]
40792 silly gunzTarPerm extractEntry lang/eq.js
40793 silly gunzTarPerm modified mode [ 'lang/eq.js', 420, 436 ]
40794 silly gunzTarPerm extractEntry lang/toArray.js
40795 silly gunzTarPerm modified mode [ 'lang/toArray.js', 420, 436 ]
40796 silly gunzTarPerm extractEntry lang/cloneDeep.js
40797 silly gunzTarPerm modified mode [ 'lang/cloneDeep.js', 420, 436 ]
40798 silly gunzTarPerm extractEntry lang/toPlainObject.js
40799 silly gunzTarPerm modified mode [ 'lang/toPlainObject.js', 420, 436 ]
40800 silly gunzTarPerm extractEntry lang/isMatch.js
40801 silly gunzTarPerm modified mode [ 'lang/isMatch.js', 420, 436 ]
40802 silly gunzTarPerm extractEntry LICENSE
40803 silly gunzTarPerm extractEntry gruntfile.js
40804 http fetch 200 https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40805 silly gunzTarPerm extractEntry date/#/copy.js
40806 silly gunzTarPerm modified mode [ 'date/#/copy.js', 420, 436 ]
40807 silly gunzTarPerm extractEntry date/#/days-in-month.js
40808 silly gunzTarPerm modified mode [ 'date/#/days-in-month.js', 420, 436 ]
40809 silly gunzTarPerm extractEntry src/core/concurrency/catchscheduler.js
40810 silly gunzTarPerm modified mode [ 'src/core/concurrency/catchscheduler.js', 438, 436 ]
40811 silly gunzTarPerm extractEntry src/core/concurrency/defaultscheduler.js
40812 silly gunzTarPerm modified mode [ 'src/core/concurrency/defaultscheduler.js', 438, 436 ]
40813 silly gunzTarPerm extractEntry test.js
40814 silly gunzTarPerm modified mode [ 'test.js', 420, 436 ]
40815 silly gunzTarPerm extractEntry src/core/concurrency/historicalscheduler.js
40816 silly gunzTarPerm modified mode [ 'src/core/concurrency/historicalscheduler.js', 438, 436 ]
40817 silly gunzTarPerm extractEntry src/core/concurrency/immediatescheduler.js
40818 silly gunzTarPerm modified mode [ 'src/core/concurrency/immediatescheduler.js', 438, 436 ]
40819 silly fetchAndShaCheck shasum bd28773e2642881aec51544924299c5cd822185b
40820 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz not in flight; adding
40821 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40822 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz
40823 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-c1a30496f4c5
40824 silly gentlyRm /tmp/npm-30115-af71656d/unpack-c1a30496f4c5 is being purged
40825 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-c1a30496f4c5
40826 silly gunzTarPerm extractEntry src/core/concurrency/scheduleditem.js
40827 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduleditem.js', 438, 436 ]
40828 silly gunzTarPerm extractEntry dist/angular-sprintf.min.js
40829 silly gunzTarPerm extractEntry dist/sprintf.min.js
40830 silly gunzTarPerm extractEntry date/#/floor-day.js
40831 silly gunzTarPerm modified mode [ 'date/#/floor-day.js', 420, 436 ]
40832 silly gunzTarPerm extractEntry date/#/floor-month.js
40833 silly gunzTarPerm modified mode [ 'date/#/floor-month.js', 420, 436 ]
40834 silly gunzTarPerm modes [ '775', '664' ]
40835 silly gunzTarPerm extractEntry src/core/concurrency/currentthreadscheduler.js
40836 silly gunzTarPerm modified mode [ 'src/core/concurrency/currentthreadscheduler.js', 438, 436 ]
40837 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.js
40838 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.js', 438, 436 ]
40839 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.periodic.js
40840 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.periodic.js', 438, 436 ]
40841 silly gunzTarPerm extractEntry package.json
40842 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
40843 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.recursive.js
40844 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.recursive.js', 438, 436 ]
40845 silly gunzTarPerm extractEntry dist/angular-sprintf.min.js.map
40846 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.wrappers.js
40847 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.wrappers.js', 438, 436 ]
40848 silly gunzTarPerm extractEntry date/#/floor-year.js
40849 silly gunzTarPerm modified mode [ 'date/#/floor-year.js', 420, 436 ]
40850 silly gunzTarPerm extractEntry date/#/format.js
40851 silly gunzTarPerm modified mode [ 'date/#/format.js', 420, 436 ]
40852 silly gunzTarPerm extractEntry LICENSE
40853 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
40854 silly gunzTarPerm extractEntry index.js
40855 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
40856 silly gunzTarPerm extractEntry src/core/concurrency/virtualtimescheduler.js
40857 silly gunzTarPerm modified mode [ 'src/core/concurrency/virtualtimescheduler.js', 438, 436 ]
40858 silly gunzTarPerm extractEntry src/core/concurrency/scheduleperiodicrecursive.js
40859 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduleperiodicrecursive.js', 438, 436 ]
40860 silly gunzTarPerm extractEntry dist/angular-sprintf.min.map
40861 silly gunzTarPerm extractEntry dist/sprintf.min.js.map
40862 silly gunzTarPerm extractEntry date/#/index.js
40863 silly gunzTarPerm modified mode [ 'date/#/index.js', 420, 436 ]
40864 silly gunzTarPerm extractEntry error/custom.js
40865 silly gunzTarPerm modified mode [ 'error/custom.js', 420, 436 ]
40866 silly gunzTarPerm extractEntry readme.md
40867 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
40868 silly gunzTarPerm extractEntry src/core/disposables/booleandisposable.js
40869 silly gunzTarPerm modified mode [ 'src/core/disposables/booleandisposable.js', 438, 436 ]
40870 silly gunzTarPerm extractEntry src/core/disposables/compositedisposable.js
40871 silly gunzTarPerm modified mode [ 'src/core/disposables/compositedisposable.js', 438, 436 ]
40872 silly gunzTarPerm extractEntry dist/sprintf.min.map
40873 silly gunzTarPerm extractEntry bower.json
40874 silly gunzTarPerm extractEntry error/index.js
40875 silly gunzTarPerm modified mode [ 'error/index.js', 420, 436 ]
40876 silly gunzTarPerm extractEntry error/is-error.js
40877 silly gunzTarPerm modified mode [ 'error/is-error.js', 420, 436 ]
40878 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/package.json
40879 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/package.json
40880 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/package.json
40881 silly gunzTarPerm extractEntry src/core/disposables/disposable.js
40882 silly gunzTarPerm modified mode [ 'src/core/disposables/disposable.js', 438, 436 ]
40883 silly gunzTarPerm extractEntry src/core/disposables/refcountdisposable.js
40884 silly gunzTarPerm modified mode [ 'src/core/disposables/refcountdisposable.js', 438, 436 ]
40885 info preinstall string_decoder@0.10.31
40886 info preinstall isarray@0.0.1
40887 info preinstall core-util-is@1.0.1
40888 silly gunzTarPerm extractEntry error/valid-error.js
40889 silly gunzTarPerm modified mode [ 'error/valid-error.js', 420, 436 ]
40890 silly gunzTarPerm extractEntry error/#/index.js
40891 silly gunzTarPerm modified mode [ 'error/#/index.js', 420, 436 ]
40892 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/package.json
40893 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/package.json
40894 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/package.json
40895 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/package.json
40896 silly gunzTarPerm extractEntry src/angular-sprintf.js
40897 silly gunzTarPerm extractEntry src/sprintf.js
40898 info preinstall inherits@2.0.1
40899 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/package.json
40900 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/package.json
40901 silly gunzTarPerm extractEntry src/core/disposables/scheduleddisposable.js
40902 silly gunzTarPerm modified mode [ 'src/core/disposables/scheduleddisposable.js', 438, 436 ]
40903 silly gunzTarPerm extractEntry src/core/backpressure/controlled.js
40904 silly gunzTarPerm modified mode [ 'src/core/backpressure/controlled.js', 438, 436 ]
40905 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/package.json
40906 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/package.json
40907 silly gunzTarPerm extractEntry error/#/throw.js
40908 silly gunzTarPerm modified mode [ 'error/#/throw.js', 420, 436 ]
40909 silly gunzTarPerm extractEntry .lint
40910 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
40911 silly gunzTarPerm extractEntry demo/angular.html
40912 silly gunzTarPerm extractEntry test/test.js
40913 silly install resolved []
40914 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40915 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40916 silly install resolved []
40917 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40918 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40919 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/package.json
40920 silly install resolved []
40921 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40922 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40923 silly gunzTarPerm extractEntry src/core/backpressure/pausable.js
40924 silly gunzTarPerm modified mode [ 'src/core/backpressure/pausable.js', 438, 436 ]
40925 silly gunzTarPerm extractEntry src/core/backpressure/pausablebuffered.js
40926 silly gunzTarPerm modified mode [ 'src/core/backpressure/pausablebuffered.js', 438, 436 ]
40927 info linkStuff string_decoder@0.10.31
40928 silly linkStuff string_decoder@0.10.31 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules as its parent node_modules
40929 info linkStuff isarray@0.0.1
40930 silly linkStuff isarray@0.0.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules as its parent node_modules
40931 silly gunzTarPerm extractEntry .travis.yml
40932 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
40933 silly gunzTarPerm extractEntry CHANGES
40934 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
40935 info linkStuff core-util-is@1.0.1
40936 silly linkStuff core-util-is@1.0.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules as its parent node_modules
40937 silly install resolved []
40938 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40939 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40940 silly gunzTarPerm extractEntry src/core/backpressure/pauser.js
40941 silly gunzTarPerm modified mode [ 'src/core/backpressure/pauser.js', 438, 436 ]
40942 silly gunzTarPerm extractEntry src/core/backpressure/stopandwait.js
40943 silly gunzTarPerm modified mode [ 'src/core/backpressure/stopandwait.js', 438, 436 ]
40944 info linkStuff inherits@2.0.1
40945 silly linkStuff inherits@2.0.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules as its parent node_modules
40946 silly gunzTarPerm extractEntry iterable/for-each.js
40947 silly gunzTarPerm modified mode [ 'iterable/for-each.js', 420, 436 ]
40948 silly gunzTarPerm extractEntry iterable/index.js
40949 silly gunzTarPerm modified mode [ 'iterable/index.js', 420, 436 ]
40950 verbose linkBins string_decoder@0.10.31
40951 verbose linkMans string_decoder@0.10.31
40952 verbose rebuildBundles string_decoder@0.10.31
40953 verbose linkBins isarray@0.0.1
40954 verbose linkMans isarray@0.0.1
40955 verbose rebuildBundles isarray@0.0.1
40956 silly gunzTarPerm extractEntry src/core/backpressure/windowed.js
40957 silly gunzTarPerm modified mode [ 'src/core/backpressure/windowed.js', 438, 436 ]
40958 silly gunzTarPerm extractEntry src/core/expressions/compiler.ts
40959 silly gunzTarPerm modified mode [ 'src/core/expressions/compiler.ts', 438, 436 ]
40960 info install string_decoder@0.10.31
40961 info install isarray@0.0.1
40962 verbose linkBins core-util-is@1.0.1
40963 verbose linkMans core-util-is@1.0.1
40964 verbose rebuildBundles core-util-is@1.0.1
40965 info install core-util-is@1.0.1
40966 silly gunzTarPerm extractEntry iterable/is.js
40967 silly gunzTarPerm modified mode [ 'iterable/is.js', 420, 436 ]
40968 silly gunzTarPerm extractEntry iterable/validate-object.js
40969 silly gunzTarPerm modified mode [ 'iterable/validate-object.js', 420, 436 ]
40970 info postinstall string_decoder@0.10.31
40971 info postinstall isarray@0.0.1
40972 info postinstall core-util-is@1.0.1
40973 silly cache afterAdd domelementtype@1.1.3
40974 verbose afterAdd /home/lukas/.npm/domelementtype/1.1.3/package/package.json not in flight; writing
40975 verbose unlock done using /home/lukas/.npm/_locks/string-decoder-c2159730c91f2344.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder
40976 verbose unlock done using /home/lukas/.npm/_locks/isarray-416494f383cca3ea.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray
40977 verbose linkBins inherits@2.0.1
40978 verbose linkMans inherits@2.0.1
40979 verbose rebuildBundles inherits@2.0.1
40980 verbose unlock done using /home/lukas/.npm/_locks/core-util-is-24b11c61ac4e560a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is
40981 info install inherits@2.0.1
40982 silly gunzTarPerm extractEntry src/core/headers/aggregatesheader.js
40983 silly gunzTarPerm modified mode [ 'src/core/headers/aggregatesheader.js', 438, 436 ]
40984 silly gunzTarPerm extractEntry src/core/headers/intro.js
40985 silly gunzTarPerm modified mode [ 'src/core/headers/intro.js', 438, 436 ]
40986 info postinstall inherits@2.0.1
40987 verbose afterAdd /home/lukas/.npm/domelementtype/1.1.3/package/package.json written
40988 silly gunzTarPerm extractEntry iterable/validate.js
40989 silly gunzTarPerm modified mode [ 'iterable/validate.js', 420, 436 ]
40990 silly gunzTarPerm extractEntry math/_pack-ieee754.js
40991 silly gunzTarPerm modified mode [ 'math/_pack-ieee754.js', 420, 436 ]
40992 verbose unlock done using /home/lukas/.npm/_locks/inherits-3ab92fd694fe8d96.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits
40993 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40994 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
40995 info linkStuff readable-stream@1.1.13
40996 silly linkStuff readable-stream@1.1.13 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules as its parent node_modules
40997 silly gunzTarPerm extractEntry src/core/headers/joinpatternsheader.js
40998 silly gunzTarPerm modified mode [ 'src/core/headers/joinpatternsheader.js', 438, 436 ]
40999 silly gunzTarPerm extractEntry src/core/headers/license.js
41000 silly gunzTarPerm modified mode [ 'src/core/headers/license.js', 438, 436 ]
41001 silly gunzTarPerm extractEntry math/_unpack-ieee754.js
41002 silly gunzTarPerm modified mode [ 'math/_unpack-ieee754.js', 420, 436 ]
41003 silly gunzTarPerm extractEntry math/index.js
41004 silly gunzTarPerm modified mode [ 'math/index.js', 420, 436 ]
41005 silly gunzTarPerm extractEntry src/core/headers/exports.js
41006 silly gunzTarPerm modified mode [ 'src/core/headers/exports.js', 438, 436 ]
41007 silly gunzTarPerm extractEntry src/core/headers/liteheader-compat.js
41008 silly gunzTarPerm modified mode [ 'src/core/headers/liteheader-compat.js', 438, 436 ]
41009 silly gunzTarPerm extractEntry math/asinh/implement.js
41010 silly gunzTarPerm modified mode [ 'math/asinh/implement.js', 420, 436 ]
41011 silly gunzTarPerm extractEntry math/asinh/index.js
41012 silly gunzTarPerm modified mode [ 'math/asinh/index.js', 420, 436 ]
41013 verbose linkBins readable-stream@1.1.13
41014 verbose linkMans readable-stream@1.1.13
41015 verbose rebuildBundles readable-stream@1.1.13
41016 verbose rebuildBundles [ 'core-util-is', 'inherits', 'isarray', 'string_decoder' ]
41017 info install readable-stream@1.1.13
41018 info postinstall readable-stream@1.1.13
41019 silly gunzTarPerm extractEntry src/core/headers/liteheader.js
41020 silly gunzTarPerm modified mode [ 'src/core/headers/liteheader.js', 438, 436 ]
41021 silly gunzTarPerm extractEntry src/core/headers/liteintro-compat.js
41022 silly gunzTarPerm modified mode [ 'src/core/headers/liteintro-compat.js', 438, 436 ]
41023 silly gunzTarPerm extractEntry math/asinh/is-implemented.js
41024 silly gunzTarPerm modified mode [ 'math/asinh/is-implemented.js', 420, 436 ]
41025 silly gunzTarPerm extractEntry math/asinh/shim.js
41026 silly gunzTarPerm modified mode [ 'math/asinh/shim.js', 420, 436 ]
41027 verbose unlock done using /home/lukas/.npm/_locks/readable-stream-b232a9219dc1f773.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream
41028 silly gunzTarPerm extractEntry src/core/headers/liteintro.js
41029 silly gunzTarPerm modified mode [ 'src/core/headers/liteintro.js', 438, 436 ]
41030 silly gunzTarPerm extractEntry src/core/headers/litetestintro-compat.js
41031 silly gunzTarPerm modified mode [ 'src/core/headers/litetestintro-compat.js', 438, 436 ]
41032 silly gunzTarPerm extractEntry math/atanh/implement.js
41033 silly gunzTarPerm modified mode [ 'math/atanh/implement.js', 420, 436 ]
41034 silly gunzTarPerm extractEntry math/atanh/index.js
41035 silly gunzTarPerm modified mode [ 'math/atanh/index.js', 420, 436 ]
41036 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/package.json
41037 silly gunzTarPerm extractEntry math/atanh/is-implemented.js
41038 silly gunzTarPerm modified mode [ 'math/atanh/is-implemented.js', 420, 436 ]
41039 silly gunzTarPerm extractEntry math/atanh/shim.js
41040 silly gunzTarPerm modified mode [ 'math/atanh/shim.js', 420, 436 ]
41041 silly gunzTarPerm extractEntry src/core/headers/experimentalheader.js
41042 silly gunzTarPerm modified mode [ 'src/core/headers/experimentalheader.js', 438, 436 ]
41043 silly gunzTarPerm extractEntry src/core/headers/litetestintro.js
41044 silly gunzTarPerm modified mode [ 'src/core/headers/litetestintro.js', 438, 436 ]
41045 silly gunzTarPerm extractEntry src/core/headers/enumeratorheader.js
41046 silly gunzTarPerm modified mode [ 'src/core/headers/enumeratorheader.js', 438, 436 ]
41047 info preinstall blanket@1.1.6
41048 silly gunzTarPerm extractEntry src/core/headers/outro.js
41049 silly gunzTarPerm modified mode [ 'src/core/headers/outro.js', 438, 436 ]
41050 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/package.json
41051 silly gunzTarPerm extractEntry math/cbrt/implement.js
41052 silly gunzTarPerm modified mode [ 'math/cbrt/implement.js', 420, 436 ]
41053 silly gunzTarPerm extractEntry math/cbrt/index.js
41054 silly gunzTarPerm modified mode [ 'math/cbrt/index.js', 420, 436 ]
41055 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket',
41055 verbose readDependencies: using existing wrap { esprima:
41055 verbose readDependencies: using existing wrap { version: '1.0.4',
41055 verbose readDependencies: using existing wrap from: 'esprima@>=1.0.2 <1.1.0',
41055 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz' },
41055 verbose readDependencies: using existing wrap falafel:
41055 verbose readDependencies: using existing wrap { version: '0.1.6',
41055 verbose readDependencies: using existing wrap from: 'falafel@>=0.1.6 <0.2.0',
41055 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz' },
41055 verbose readDependencies: using existing wrap xtend:
41055 verbose readDependencies: using existing wrap { version: '2.1.2',
41055 verbose readDependencies: using existing wrap from: 'xtend@>=2.1.1 <2.2.0',
41055 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41055 verbose readDependencies: using existing wrap dependencies: [Object] } } ]
41056 verbose from wrap [ 'esprima',
41056 verbose from wrap { version: '1.0.4',
41056 verbose from wrap from: 'esprima@>=1.0.2 <1.1.0',
41056 verbose from wrap resolved: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz' } ]
41057 verbose from wrap [ 'falafel',
41057 verbose from wrap { version: '0.1.6',
41057 verbose from wrap from: 'falafel@>=0.1.6 <0.2.0',
41057 verbose from wrap resolved: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz' } ]
41058 verbose from wrap [ 'xtend',
41058 verbose from wrap { version: '2.1.2',
41058 verbose from wrap from: 'xtend@>=2.1.1 <2.2.0',
41058 verbose from wrap resolved: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41058 verbose from wrap dependencies: { 'object-keys': [Object] } } ]
41059 verbose readDependencies returned deps { esprima: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41059 verbose readDependencies returned deps falafel: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41059 verbose readDependencies returned deps xtend: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz' }
41060 silly prepareForInstallMany adding esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz from blanket dependencies
41061 silly prepareForInstallMany adding falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz from blanket dependencies
41062 silly prepareForInstallMany adding xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz from blanket dependencies
41063 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/package.json
41064 silly gunzTarPerm extractEntry src/core/headers/coincidenceheader.js
41065 silly gunzTarPerm modified mode [ 'src/core/headers/coincidenceheader.js', 438, 436 ]
41066 silly gunzTarPerm extractEntry src/core/headers/sortingheader.js
41067 silly gunzTarPerm modified mode [ 'src/core/headers/sortingheader.js', 438, 436 ]
41068 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket',
41068 verbose readDependencies: using existing wrap { esprima:
41068 verbose readDependencies: using existing wrap { version: '1.0.4',
41068 verbose readDependencies: using existing wrap from: 'esprima@>=1.0.2 <1.1.0',
41068 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz' },
41068 verbose readDependencies: using existing wrap falafel:
41068 verbose readDependencies: using existing wrap { version: '0.1.6',
41068 verbose readDependencies: using existing wrap from: 'falafel@>=0.1.6 <0.2.0',
41068 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz' },
41068 verbose readDependencies: using existing wrap xtend:
41068 verbose readDependencies: using existing wrap { version: '2.1.2',
41068 verbose readDependencies: using existing wrap from: 'xtend@>=2.1.1 <2.2.0',
41068 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41068 verbose readDependencies: using existing wrap dependencies: [Object] } } ]
41069 verbose from wrap [ 'esprima',
41069 verbose from wrap { version: '1.0.4',
41069 verbose from wrap from: 'esprima@>=1.0.2 <1.1.0',
41069 verbose from wrap resolved: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz' } ]
41070 verbose from wrap [ 'falafel',
41070 verbose from wrap { version: '0.1.6',
41070 verbose from wrap from: 'falafel@>=0.1.6 <0.2.0',
41070 verbose from wrap resolved: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz' } ]
41071 verbose from wrap [ 'xtend',
41071 verbose from wrap { version: '2.1.2',
41071 verbose from wrap from: 'xtend@>=2.1.1 <2.2.0',
41071 verbose from wrap resolved: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41071 verbose from wrap dependencies: { 'object-keys': [Object] } } ]
41072 verbose readDependencies returned deps { esprima: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41072 verbose readDependencies returned deps falafel: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41072 verbose readDependencies returned deps xtend: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz' }
41073 silly gunzTarPerm extractEntry math/cbrt/is-implemented.js
41074 silly gunzTarPerm modified mode [ 'math/cbrt/is-implemented.js', 420, 436 ]
41075 silly gunzTarPerm extractEntry math/cbrt/shim.js
41076 silly gunzTarPerm modified mode [ 'math/cbrt/shim.js', 420, 436 ]
41077 silly cache add args [ 'esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41077 silly cache add null ]
41078 verbose cache add spec esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41079 silly cache add args [ 'falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41079 silly cache add null ]
41080 verbose cache add spec falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41081 silly cache add args [ 'xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41081 silly cache add null ]
41082 verbose cache add spec xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41083 silly cache add parsed spec Result {
41083 silly cache add raw: 'esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41083 silly cache add scope: null,
41083 silly cache add name: 'esprima',
41083 silly cache add rawSpec: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41083 silly cache add spec: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41083 silly cache add type: 'remote' }
41084 silly mapToRegistry name esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41085 silly mapToRegistry using default registry
41086 silly mapToRegistry registry https://registry.npmjs.org/
41087 silly mapToRegistry uri https://registry.npmjs.org/esprima@https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41088 verbose addRemoteTarball https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz not in flight; adding
41089 verbose addRemoteTarball [ 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
41089 verbose addRemoteTarball null ]
41090 silly cache add parsed spec Result {
41090 silly cache add raw: 'falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41090 silly cache add scope: null,
41090 silly cache add name: 'falafel',
41090 silly cache add rawSpec: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41090 silly cache add spec: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41090 silly cache add type: 'remote' }
41091 silly mapToRegistry name falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41092 silly mapToRegistry using default registry
41093 silly mapToRegistry registry https://registry.npmjs.org/
41094 silly mapToRegistry uri https://registry.npmjs.org/falafel@https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41095 verbose addRemoteTarball https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz not in flight; adding
41096 verbose addRemoteTarball [ 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
41096 verbose addRemoteTarball null ]
41097 silly cache add parsed spec Result {
41097 silly cache add raw: 'xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41097 silly cache add scope: null,
41097 silly cache add name: 'xtend',
41097 silly cache add rawSpec: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41097 silly cache add spec: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
41097 silly cache add type: 'remote' }
41098 silly mapToRegistry name xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41099 silly mapToRegistry using default registry
41100 silly mapToRegistry registry https://registry.npmjs.org/
41101 silly mapToRegistry uri https://registry.npmjs.org/xtend@https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41102 verbose addRemoteTarball https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz not in flight; adding
41103 verbose addRemoteTarball [ 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz', null ]
41104 info retry fetch attempt 1 at 9:02:47 PM
41105 info attempt registry request try #1 at 9:02:47 PM
41106 http fetch GET https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41107 info retry fetch attempt 1 at 9:02:47 PM
41108 info attempt registry request try #1 at 9:02:47 PM
41109 http fetch GET https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41110 info retry fetch attempt 1 at 9:02:47 PM
41111 info attempt registry request try #1 at 9:02:47 PM
41112 http fetch GET https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41113 silly gunzTarPerm extractEntry math/clz32/implement.js
41114 silly gunzTarPerm modified mode [ 'math/clz32/implement.js', 420, 436 ]
41115 silly gunzTarPerm extractEntry math/clz32/index.js
41116 silly gunzTarPerm modified mode [ 'math/clz32/index.js', 420, 436 ]
41117 silly gunzTarPerm extractEntry src/core/headers/bindingheader.js
41118 silly gunzTarPerm modified mode [ 'src/core/headers/bindingheader.js', 438, 436 ]
41119 silly gunzTarPerm extractEntry src/core/headers/subintro.js
41120 silly gunzTarPerm modified mode [ 'src/core/headers/subintro.js', 438, 436 ]
41121 silly gunzTarPerm extractEntry math/clz32/is-implemented.js
41122 silly gunzTarPerm modified mode [ 'math/clz32/is-implemented.js', 420, 436 ]
41123 silly gunzTarPerm extractEntry math/clz32/shim.js
41124 silly gunzTarPerm modified mode [ 'math/clz32/shim.js', 420, 436 ]
41125 silly cache afterAdd sprintf-js@1.0.3
41126 verbose afterAdd /home/lukas/.npm/sprintf-js/1.0.3/package/package.json not in flight; writing
41127 silly gunzTarPerm extractEntry src/core/headers/basicheader.js
41128 silly gunzTarPerm modified mode [ 'src/core/headers/basicheader.js', 438, 436 ]
41129 silly gunzTarPerm extractEntry src/core/headers/suboutro.js
41130 silly gunzTarPerm modified mode [ 'src/core/headers/suboutro.js', 438, 436 ]
41131 verbose afterAdd /home/lukas/.npm/sprintf-js/1.0.3/package/package.json written
41132 silly gunzTarPerm extractEntry math/cosh/implement.js
41133 silly gunzTarPerm modified mode [ 'math/cosh/implement.js', 420, 436 ]
41134 silly gunzTarPerm extractEntry math/cosh/index.js
41135 silly gunzTarPerm modified mode [ 'math/cosh/index.js', 420, 436 ]
41136 silly gunzTarPerm extractEntry src/core/headers/basicheader-compat.js
41137 silly gunzTarPerm modified mode [ 'src/core/headers/basicheader-compat.js', 438, 436 ]
41138 silly gunzTarPerm extractEntry src/core/headers/testheader.js
41139 silly gunzTarPerm modified mode [ 'src/core/headers/testheader.js', 438, 436 ]
41140 silly gunzTarPerm extractEntry math/cosh/is-implemented.js
41141 silly gunzTarPerm modified mode [ 'math/cosh/is-implemented.js', 420, 436 ]
41142 silly gunzTarPerm extractEntry math/cosh/shim.js
41143 silly gunzTarPerm modified mode [ 'math/cosh/shim.js', 420, 436 ]
41144 silly gunzTarPerm extractEntry src/core/headers/backpressureheader.js
41145 silly gunzTarPerm modified mode [ 'src/core/headers/backpressureheader.js', 438, 436 ]
41146 silly gunzTarPerm extractEntry src/core/headers/testintro.js
41147 silly gunzTarPerm modified mode [ 'src/core/headers/testintro.js', 438, 436 ]
41148 silly gunzTarPerm extractEntry math/expm1/implement.js
41149 silly gunzTarPerm modified mode [ 'math/expm1/implement.js', 420, 436 ]
41150 silly gunzTarPerm extractEntry math/expm1/index.js
41151 silly gunzTarPerm modified mode [ 'math/expm1/index.js', 420, 436 ]
41152 silly gunzTarPerm extractEntry src/core/headers/asyncintro.js
41153 silly gunzTarPerm modified mode [ 'src/core/headers/asyncintro.js', 438, 436 ]
41154 silly gunzTarPerm extractEntry src/core/headers/timeheader.js
41155 silly gunzTarPerm modified mode [ 'src/core/headers/timeheader.js', 438, 436 ]
41156 silly gunzTarPerm extractEntry math/expm1/is-implemented.js
41157 silly gunzTarPerm modified mode [ 'math/expm1/is-implemented.js', 420, 436 ]
41158 silly gunzTarPerm extractEntry math/expm1/shim.js
41159 silly gunzTarPerm modified mode [ 'math/expm1/shim.js', 420, 436 ]
41160 silly gunzTarPerm extractEntry src/core/headers/asyncheader.js
41161 silly gunzTarPerm modified mode [ 'src/core/headers/asyncheader.js', 438, 436 ]
41162 silly gunzTarPerm extractEntry src/core/headers/virtualtimeheader.js
41163 silly gunzTarPerm modified mode [ 'src/core/headers/virtualtimeheader.js', 438, 436 ]
41164 silly gunzTarPerm extractEntry math/fround/implement.js
41165 silly gunzTarPerm modified mode [ 'math/fround/implement.js', 420, 436 ]
41166 silly gunzTarPerm extractEntry math/fround/index.js
41167 silly gunzTarPerm modified mode [ 'math/fround/index.js', 420, 436 ]
41168 silly gunzTarPerm extractEntry src/core/headers/liteextrasheader.js
41169 silly gunzTarPerm modified mode [ 'src/core/headers/liteextrasheader.js', 438, 436 ]
41170 silly gunzTarPerm extractEntry src/core/internal/bindcallback.js
41171 silly gunzTarPerm modified mode [ 'src/core/internal/bindcallback.js', 438, 436 ]
41172 silly gunzTarPerm extractEntry math/fround/is-implemented.js
41173 silly gunzTarPerm modified mode [ 'math/fround/is-implemented.js', 420, 436 ]
41174 silly gunzTarPerm extractEntry math/fround/shim.js
41175 silly gunzTarPerm modified mode [ 'math/fround/shim.js', 420, 436 ]
41176 silly gunzTarPerm extractEntry src/core/internal/dictionary.js
41177 silly gunzTarPerm modified mode [ 'src/core/internal/dictionary.js', 438, 436 ]
41178 silly gunzTarPerm extractEntry src/core/internal/dontenums.js
41179 silly gunzTarPerm modified mode [ 'src/core/internal/dontenums.js', 438, 436 ]
41180 silly gunzTarPerm extractEntry math/trunc/implement.js
41181 silly gunzTarPerm modified mode [ 'math/trunc/implement.js', 420, 436 ]
41182 silly gunzTarPerm extractEntry math/trunc/index.js
41183 silly gunzTarPerm modified mode [ 'math/trunc/index.js', 420, 436 ]
41184 silly gunzTarPerm extractEntry src/core/internal/errors.js
41185 silly gunzTarPerm modified mode [ 'src/core/internal/errors.js', 438, 436 ]
41186 silly gunzTarPerm extractEntry src/core/internal/deprecate.js
41187 silly gunzTarPerm modified mode [ 'src/core/internal/deprecate.js', 438, 436 ]
41188 silly gunzTarPerm extractEntry math/trunc/is-implemented.js
41189 silly gunzTarPerm modified mode [ 'math/trunc/is-implemented.js', 420, 436 ]
41190 silly gunzTarPerm extractEntry math/trunc/shim.js
41191 silly gunzTarPerm modified mode [ 'math/trunc/shim.js', 420, 436 ]
41192 silly gunzTarPerm extractEntry src/core/internal/map.js
41193 silly gunzTarPerm modified mode [ 'src/core/internal/map.js', 438, 436 ]
41194 silly gunzTarPerm extractEntry src/core/internal/polyfills.js
41195 silly gunzTarPerm modified mode [ 'src/core/internal/polyfills.js', 438, 436 ]
41196 silly gunzTarPerm extractEntry math/imul/implement.js
41197 silly gunzTarPerm modified mode [ 'math/imul/implement.js', 420, 436 ]
41198 silly gunzTarPerm extractEntry math/imul/index.js
41199 silly gunzTarPerm modified mode [ 'math/imul/index.js', 420, 436 ]
41200 silly gunzTarPerm extractEntry src/core/internal/priorityqueue.js
41201 silly gunzTarPerm modified mode [ 'src/core/internal/priorityqueue.js', 438, 436 ]
41202 silly gunzTarPerm extractEntry src/core/internal/trycatch.js
41203 silly gunzTarPerm modified mode [ 'src/core/internal/trycatch.js', 438, 436 ]
41204 silly gunzTarPerm extractEntry math/imul/is-implemented.js
41205 silly gunzTarPerm modified mode [ 'math/imul/is-implemented.js', 420, 436 ]
41206 silly gunzTarPerm extractEntry math/imul/shim.js
41207 silly gunzTarPerm modified mode [ 'math/imul/shim.js', 420, 436 ]
41208 http fetch 200 https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41209 silly gunzTarPerm extractEntry src/core/internal/util.js
41210 silly gunzTarPerm modified mode [ 'src/core/internal/util.js', 438, 436 ]
41211 silly gunzTarPerm extractEntry src/core/internal/isequal.js
41212 silly gunzTarPerm modified mode [ 'src/core/internal/isequal.js', 438, 436 ]
41213 silly fetchAndShaCheck shasum 6efecc2a4dad8e6962c4901b337ce7ba87b5d28b
41214 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/xtend/-/xtend-2.1.2.tgz not in flight; adding
41215 silly gunzTarPerm extractEntry math/acosh/implement.js
41216 silly gunzTarPerm modified mode [ 'math/acosh/implement.js', 420, 436 ]
41217 silly gunzTarPerm extractEntry math/acosh/index.js
41218 silly gunzTarPerm modified mode [ 'math/acosh/index.js', 420, 436 ]
41219 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41220 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/xtend/-/xtend-2.1.2.tgz
41221 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-cb29dbf2e4d8
41222 silly gentlyRm /tmp/npm-30115-af71656d/unpack-cb29dbf2e4d8 is being purged
41223 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-cb29dbf2e4d8
41224 http fetch 200 https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41225 silly gunzTarPerm modes [ '775', '664' ]
41226 silly gunzTarPerm extractEntry src/core/perf/observablebase.js
41227 silly gunzTarPerm modified mode [ 'src/core/perf/observablebase.js', 438, 436 ]
41228 silly gunzTarPerm extractEntry src/core/perf/observerbase.js
41229 silly gunzTarPerm modified mode [ 'src/core/perf/observerbase.js', 438, 436 ]
41230 silly gunzTarPerm extractEntry package.json
41231 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
41232 silly gunzTarPerm extractEntry math/acosh/is-implemented.js
41233 silly gunzTarPerm modified mode [ 'math/acosh/is-implemented.js', 420, 436 ]
41234 silly gunzTarPerm extractEntry math/acosh/shim.js
41235 silly gunzTarPerm modified mode [ 'math/acosh/shim.js', 420, 436 ]
41236 silly gunzTarPerm extractEntry .npmignore
41237 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
41238 silly gunzTarPerm extractEntry README.md
41239 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
41240 silly gunzTarPerm extractEntry math/log10/implement.js
41241 silly gunzTarPerm modified mode [ 'math/log10/implement.js', 420, 436 ]
41242 silly gunzTarPerm extractEntry math/log10/index.js
41243 silly gunzTarPerm modified mode [ 'math/log10/index.js', 420, 436 ]
41244 silly gunzTarPerm extractEntry src/core/perf/operators/combinelatest.js
41245 silly gunzTarPerm modified mode [ 'src/core/perf/operators/combinelatest.js', 438, 436 ]
41246 silly gunzTarPerm extractEntry src/core/perf/operators/just.js
41247 silly gunzTarPerm modified mode [ 'src/core/perf/operators/just.js', 438, 436 ]
41248 silly gunzTarPerm extractEntry LICENCE
41249 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
41250 silly gunzTarPerm extractEntry has-keys.js
41251 silly gunzTarPerm modified mode [ 'has-keys.js', 420, 436 ]
41252 silly gunzTarPerm extractEntry math/log10/is-implemented.js
41253 silly gunzTarPerm modified mode [ 'math/log10/is-implemented.js', 420, 436 ]
41254 silly gunzTarPerm extractEntry math/log10/shim.js
41255 silly gunzTarPerm modified mode [ 'math/log10/shim.js', 420, 436 ]
41256 silly gunzTarPerm extractEntry src/core/perf/operators/map.js
41257 silly gunzTarPerm modified mode [ 'src/core/perf/operators/map.js', 438, 436 ]
41258 silly gunzTarPerm extractEntry src/core/perf/operators/mergeall.js
41259 silly gunzTarPerm modified mode [ 'src/core/perf/operators/mergeall.js', 438, 436 ]
41260 silly gunzTarPerm extractEntry index.js
41261 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
41262 silly gunzTarPerm extractEntry mutable.js
41263 silly gunzTarPerm modified mode [ 'mutable.js', 420, 436 ]
41264 silly fetchAndShaCheck shasum 9f557e08fc3b4d26ece9dd34f8fbf476b62585ad
41265 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/esprima/-/esprima-1.0.4.tgz not in flight; adding
41266 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41267 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/esprima/-/esprima-1.0.4.tgz
41268 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-522175e5db2a
41269 silly gentlyRm /tmp/npm-30115-af71656d/unpack-522175e5db2a is being purged
41270 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-522175e5db2a
41271 silly gunzTarPerm extractEntry math/log1p/implement.js
41272 silly gunzTarPerm modified mode [ 'math/log1p/implement.js', 420, 436 ]
41273 silly gunzTarPerm extractEntry math/log1p/index.js
41274 silly gunzTarPerm modified mode [ 'math/log1p/index.js', 420, 436 ]
41275 silly gunzTarPerm extractEntry src/core/perf/operators/mergeproto.js
41276 silly gunzTarPerm modified mode [ 'src/core/perf/operators/mergeproto.js', 438, 436 ]
41277 silly gunzTarPerm extractEntry src/core/perf/operators/ignoreelements.js
41278 silly gunzTarPerm modified mode [ 'src/core/perf/operators/ignoreelements.js', 438, 436 ]
41279 silly gunzTarPerm modes [ '775', '664' ]
41280 silly gunzTarPerm extractEntry test.js
41281 silly gunzTarPerm modified mode [ 'test.js', 420, 436 ]
41282 silly gunzTarPerm extractEntry Makefile
41283 silly gunzTarPerm modified mode [ 'Makefile', 420, 436 ]
41284 silly gunzTarPerm extractEntry package.json
41285 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
41286 silly gunzTarPerm extractEntry math/log1p/is-implemented.js
41287 silly gunzTarPerm modified mode [ 'math/log1p/is-implemented.js', 420, 436 ]
41288 silly gunzTarPerm extractEntry math/log1p/shim.js
41289 silly gunzTarPerm modified mode [ 'math/log1p/shim.js', 420, 436 ]
41290 silly gunzTarPerm extractEntry README.md
41291 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
41292 silly gunzTarPerm extractEntry esprima.js
41293 silly gunzTarPerm modified mode [ 'esprima.js', 420, 436 ]
41294 silly gunzTarPerm extractEntry src/core/perf/operators/of.js
41295 silly gunzTarPerm modified mode [ 'src/core/perf/operators/of.js', 438, 436 ]
41296 silly gunzTarPerm extractEntry src/core/perf/operators/pairs.js
41297 silly gunzTarPerm modified mode [ 'src/core/perf/operators/pairs.js', 438, 436 ]
41298 silly gunzTarPerm extractEntry math/log2/implement.js
41299 silly gunzTarPerm modified mode [ 'math/log2/implement.js', 420, 436 ]
41300 silly gunzTarPerm extractEntry math/log2/index.js
41301 silly gunzTarPerm modified mode [ 'math/log2/index.js', 420, 436 ]
41302 silly gunzTarPerm extractEntry bin/esparse.js
41303 silly gunzTarPerm modified mode [ 'bin/esparse.js', 420, 436 ]
41304 silly gunzTarPerm extractEntry src/core/perf/operators/range.js
41305 silly gunzTarPerm modified mode [ 'src/core/perf/operators/range.js', 438, 436 ]
41306 silly gunzTarPerm extractEntry src/core/perf/operators/reduce.js
41307 silly gunzTarPerm modified mode [ 'src/core/perf/operators/reduce.js', 438, 436 ]
41308 silly gunzTarPerm extractEntry math/log2/is-implemented.js
41309 silly gunzTarPerm modified mode [ 'math/log2/is-implemented.js', 420, 436 ]
41310 silly gunzTarPerm extractEntry math/log2/shim.js
41311 silly gunzTarPerm modified mode [ 'math/log2/shim.js', 420, 436 ]
41312 silly gunzTarPerm extractEntry bin/esvalidate.js
41313 silly gunzTarPerm modified mode [ 'bin/esvalidate.js', 493, 509 ]
41314 silly gunzTarPerm extractEntry test/compat.js
41315 silly gunzTarPerm modified mode [ 'test/compat.js', 420, 436 ]
41316 silly gunzTarPerm extractEntry test/reflect.js
41317 silly gunzTarPerm modified mode [ 'test/reflect.js', 420, 436 ]
41318 silly gunzTarPerm extractEntry src/core/perf/operators/repeat.js
41319 silly gunzTarPerm modified mode [ 'src/core/perf/operators/repeat.js', 438, 436 ]
41320 silly gunzTarPerm extractEntry src/core/perf/operators/frompromise.js
41321 silly gunzTarPerm modified mode [ 'src/core/perf/operators/frompromise.js', 438, 436 ]
41322 silly gunzTarPerm extractEntry test/run.js
41323 silly gunzTarPerm modified mode [ 'test/run.js', 420, 436 ]
41324 silly gunzTarPerm extractEntry test/runner.js
41325 silly gunzTarPerm modified mode [ 'test/runner.js', 420, 436 ]
41326 silly gunzTarPerm extractEntry math/sign/implement.js
41327 silly gunzTarPerm modified mode [ 'math/sign/implement.js', 420, 436 ]
41328 silly gunzTarPerm extractEntry math/sign/index.js
41329 silly gunzTarPerm modified mode [ 'math/sign/index.js', 420, 436 ]
41330 silly gunzTarPerm extractEntry test/test.js
41331 silly gunzTarPerm modified mode [ 'test/test.js', 420, 436 ]
41332 silly gunzTarPerm extractEntry src/core/perf/operators/scan.js
41333 silly gunzTarPerm modified mode [ 'src/core/perf/operators/scan.js', 438, 436 ]
41334 silly gunzTarPerm extractEntry src/core/perf/operators/fromarrayobservable.js
41335 silly gunzTarPerm modified mode [ 'src/core/perf/operators/fromarrayobservable.js', 438, 436 ]
41336 silly gunzTarPerm extractEntry math/sign/is-implemented.js
41337 silly gunzTarPerm modified mode [ 'math/sign/is-implemented.js', 420, 436 ]
41338 silly gunzTarPerm extractEntry math/sign/shim.js
41339 silly gunzTarPerm modified mode [ 'math/sign/shim.js', 420, 436 ]
41340 http fetch 200 https://registry.npmjs.org/entities/-/entities-1.1.1.tgz
41341 silly gunzTarPerm extractEntry src/core/perf/operators/skip.js
41342 silly gunzTarPerm modified mode [ 'src/core/perf/operators/skip.js', 438, 436 ]
41343 silly gunzTarPerm extractEntry src/core/perf/operators/fromarray.js
41344 silly gunzTarPerm modified mode [ 'src/core/perf/operators/fromarray.js', 438, 436 ]
41345 silly gunzTarPerm extractEntry math/sinh/implement.js
41346 silly gunzTarPerm modified mode [ 'math/sinh/implement.js', 420, 436 ]
41347 silly gunzTarPerm extractEntry math/sinh/index.js
41348 silly gunzTarPerm modified mode [ 'math/sinh/index.js', 420, 436 ]
41349 silly fetchAndShaCheck shasum 6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0
41350 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/entities/-/entities-1.1.1.tgz not in flight; adding
41351 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/entities/-/entities-1.1.1.tgz
41352 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/entities/-/entities-1.1.1.tgz
41353 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-68ee09dc56b5
41354 silly gentlyRm /tmp/npm-30115-af71656d/unpack-68ee09dc56b5 is being purged
41355 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-68ee09dc56b5
41356 silly gunzTarPerm modes [ '775', '664' ]
41357 silly gunzTarPerm extractEntry math/sinh/is-implemented.js
41358 silly gunzTarPerm modified mode [ 'math/sinh/is-implemented.js', 420, 436 ]
41359 silly gunzTarPerm extractEntry math/sinh/shim.js
41360 silly gunzTarPerm modified mode [ 'math/sinh/shim.js', 420, 436 ]
41361 silly gunzTarPerm extractEntry src/core/perf/operators/switch.js
41362 silly gunzTarPerm modified mode [ 'src/core/perf/operators/switch.js', 438, 436 ]
41363 silly gunzTarPerm extractEntry src/core/perf/operators/from.js
41364 silly gunzTarPerm modified mode [ 'src/core/perf/operators/from.js', 438, 436 ]
41365 silly gunzTarPerm extractEntry package.json
41366 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
41367 silly gunzTarPerm extractEntry LICENSE
41368 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
41369 silly gunzTarPerm extractEntry index.js
41370 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
41371 silly gunzTarPerm extractEntry src/core/perf/operators/take.js
41372 silly gunzTarPerm modified mode [ 'src/core/perf/operators/take.js', 438, 436 ]
41373 silly gunzTarPerm extractEntry src/core/perf/operators/finally.js
41374 silly gunzTarPerm modified mode [ 'src/core/perf/operators/finally.js', 438, 436 ]
41375 silly gunzTarPerm extractEntry math/tanh/implement.js
41376 silly gunzTarPerm modified mode [ 'math/tanh/implement.js', 420, 436 ]
41377 silly gunzTarPerm extractEntry .travis.yml
41378 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
41379 silly gunzTarPerm extractEntry lib/decode.js
41380 silly gunzTarPerm modified mode [ 'lib/decode.js', 420, 436 ]
41381 silly gunzTarPerm extractEntry src/core/perf/operators/takeuntil.js
41382 silly gunzTarPerm modified mode [ 'src/core/perf/operators/takeuntil.js', 438, 436 ]
41383 silly gunzTarPerm extractEntry src/core/perf/operators/filter.js
41384 silly gunzTarPerm modified mode [ 'src/core/perf/operators/filter.js', 438, 436 ]
41385 silly gunzTarPerm extractEntry math/tanh/index.js
41386 silly gunzTarPerm modified mode [ 'math/tanh/index.js', 420, 436 ]
41387 silly gunzTarPerm extractEntry math/tanh/is-implemented.js
41388 silly gunzTarPerm modified mode [ 'math/tanh/is-implemented.js', 420, 436 ]
41389 silly cache afterAdd xtend@2.1.2
41390 verbose afterAdd /home/lukas/.npm/xtend/2.1.2/package/package.json not in flight; writing
41391 verbose afterAdd /home/lukas/.npm/xtend/2.1.2/package/package.json written
41392 silly gunzTarPerm extractEntry math/tanh/shim.js
41393 silly gunzTarPerm modified mode [ 'math/tanh/shim.js', 420, 436 ]
41394 silly gunzTarPerm extractEntry math/hypot/implement.js
41395 silly gunzTarPerm modified mode [ 'math/hypot/implement.js', 420, 436 ]
41396 silly gunzTarPerm extractEntry lib/decode_codepoint.js
41397 silly gunzTarPerm modified mode [ 'lib/decode_codepoint.js', 420, 436 ]
41398 silly gunzTarPerm extractEntry lib/encode.js
41399 silly gunzTarPerm modified mode [ 'lib/encode.js', 420, 436 ]
41400 silly gunzTarPerm extractEntry src/core/perf/operators/tap.js
41401 silly gunzTarPerm modified mode [ 'src/core/perf/operators/tap.js', 438, 436 ]
41402 silly gunzTarPerm extractEntry src/core/perf/operators/empty.js
41403 silly gunzTarPerm modified mode [ 'src/core/perf/operators/empty.js', 438, 436 ]
41404 silly gunzTarPerm extractEntry math/hypot/index.js
41405 silly gunzTarPerm modified mode [ 'math/hypot/index.js', 420, 436 ]
41406 silly gunzTarPerm extractEntry math/hypot/is-implemented.js
41407 silly gunzTarPerm modified mode [ 'math/hypot/is-implemented.js', 420, 436 ]
41408 silly gunzTarPerm extractEntry maps/decode.json
41409 silly gunzTarPerm modified mode [ 'maps/decode.json', 420, 436 ]
41410 silly gunzTarPerm extractEntry maps/entities.json
41411 silly gunzTarPerm modified mode [ 'maps/entities.json', 420, 436 ]
41412 silly gunzTarPerm extractEntry src/core/perf/operators/throw.js
41413 silly gunzTarPerm modified mode [ 'src/core/perf/operators/throw.js', 438, 436 ]
41414 silly gunzTarPerm extractEntry src/core/perf/operators/distinctuntilchanged.js
41415 silly gunzTarPerm modified mode [ 'src/core/perf/operators/distinctuntilchanged.js', 438, 436 ]
41416 silly gunzTarPerm extractEntry maps/legacy.json
41417 silly gunzTarPerm modified mode [ 'maps/legacy.json', 420, 436 ]
41418 silly gunzTarPerm extractEntry math/hypot/shim.js
41419 silly gunzTarPerm modified mode [ 'math/hypot/shim.js', 420, 436 ]
41420 silly gunzTarPerm extractEntry string/format-method.js
41421 silly gunzTarPerm modified mode [ 'string/format-method.js', 420, 436 ]
41422 silly gunzTarPerm extractEntry src/core/perf/operators/toarray.js
41423 silly gunzTarPerm modified mode [ 'src/core/perf/operators/toarray.js', 438, 436 ]
41424 silly gunzTarPerm extractEntry src/core/perf/operators/concat.js
41425 silly gunzTarPerm modified mode [ 'src/core/perf/operators/concat.js', 438, 436 ]
41426 silly gunzTarPerm extractEntry string/index.js
41427 silly gunzTarPerm modified mode [ 'string/index.js', 420, 436 ]
41428 silly gunzTarPerm extractEntry string/is-string.js
41429 silly gunzTarPerm modified mode [ 'string/is-string.js', 420, 436 ]
41430 silly gunzTarPerm extractEntry maps/xml.json
41431 silly gunzTarPerm modified mode [ 'maps/xml.json', 420, 436 ]
41432 silly gunzTarPerm extractEntry readme.md
41433 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
41434 silly gunzTarPerm extractEntry src/core/perf/operators/zip.js
41435 silly gunzTarPerm modified mode [ 'src/core/perf/operators/zip.js', 438, 436 ]
41436 silly gunzTarPerm extractEntry src/core/perf/operators/never.js
41437 silly gunzTarPerm modified mode [ 'src/core/perf/operators/never.js', 438, 436 ]
41438 silly gunzTarPerm extractEntry string/random-uniq.js
41439 silly gunzTarPerm modified mode [ 'string/random-uniq.js', 420, 436 ]
41440 silly gunzTarPerm extractEntry string/#/indent.js
41441 silly gunzTarPerm modified mode [ 'string/#/indent.js', 420, 436 ]
41442 silly gunzTarPerm extractEntry test/test.js
41443 silly gunzTarPerm modified mode [ 'test/test.js', 420, 436 ]
41444 silly gunzTarPerm extractEntry test/mocha.opts
41445 silly gunzTarPerm modified mode [ 'test/mocha.opts', 420, 436 ]
41446 silly gunzTarPerm extractEntry src/core/testing/coldobservable.js
41447 silly gunzTarPerm modified mode [ 'src/core/testing/coldobservable.js', 438, 436 ]
41448 silly gunzTarPerm extractEntry src/core/testing/hotobservable.js
41449 silly gunzTarPerm modified mode [ 'src/core/testing/hotobservable.js', 438, 436 ]
41450 silly gunzTarPerm extractEntry string/#/capitalize.js
41451 silly gunzTarPerm modified mode [ 'string/#/capitalize.js', 420, 436 ]
41452 silly gunzTarPerm extractEntry string/#/case-insensitive-compare.js
41453 silly gunzTarPerm modified mode [ 'string/#/case-insensitive-compare.js', 420, 436 ]
41454 silly gunzTarPerm extractEntry src/core/testing/mockdisposable.js
41455 silly gunzTarPerm modified mode [ 'src/core/testing/mockdisposable.js', 438, 436 ]
41456 silly gunzTarPerm extractEntry src/core/testing/mockobserver.js
41457 silly gunzTarPerm modified mode [ 'src/core/testing/mockobserver.js', 438, 436 ]
41458 silly gunzTarPerm extractEntry string/#/hyphen-to-camel.js
41459 silly gunzTarPerm modified mode [ 'string/#/hyphen-to-camel.js', 420, 436 ]
41460 silly gunzTarPerm extractEntry string/#/camel-to-hyphen.js
41461 silly gunzTarPerm modified mode [ 'string/#/camel-to-hyphen.js', 420, 436 ]
41462 silly gunzTarPerm extractEntry src/core/testing/mockpromise.js
41463 silly gunzTarPerm modified mode [ 'src/core/testing/mockpromise.js', 438, 436 ]
41464 silly gunzTarPerm extractEntry src/core/testing/reactivetest.js
41465 silly gunzTarPerm modified mode [ 'src/core/testing/reactivetest.js', 438, 436 ]
41466 silly gunzTarPerm extractEntry string/#/index.js
41467 silly gunzTarPerm modified mode [ 'string/#/index.js', 420, 436 ]
41468 silly gunzTarPerm extractEntry string/#/last.js
41469 silly gunzTarPerm modified mode [ 'string/#/last.js', 420, 436 ]
41470 silly gunzTarPerm extractEntry src/core/testing/recorded.js
41471 silly gunzTarPerm modified mode [ 'src/core/testing/recorded.js', 438, 436 ]
41472 silly gunzTarPerm extractEntry src/core/testing/subscription.js
41473 silly gunzTarPerm modified mode [ 'src/core/testing/subscription.js', 438, 436 ]
41474 silly gunzTarPerm extractEntry string/#/pad.js
41475 silly gunzTarPerm modified mode [ 'string/#/pad.js', 420, 436 ]
41476 silly gunzTarPerm extractEntry string/#/plain-replace-all.js
41477 silly gunzTarPerm modified mode [ 'string/#/plain-replace-all.js', 420, 436 ]
41478 silly gunzTarPerm extractEntry src/core/testing/testscheduler.js
41479 silly gunzTarPerm modified mode [ 'src/core/testing/testscheduler.js', 438, 436 ]
41480 silly gunzTarPerm extractEntry src/core/subjects/anonymoussubject.js
41481 silly gunzTarPerm modified mode [ 'src/core/subjects/anonymoussubject.js', 438, 436 ]
41482 http fetch 200 https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41483 silly gunzTarPerm extractEntry string/#/plain-replace.js
41484 silly gunzTarPerm modified mode [ 'string/#/plain-replace.js', 420, 436 ]
41485 silly gunzTarPerm extractEntry string/#/at.js
41486 silly gunzTarPerm modified mode [ 'string/#/at.js', 420, 436 ]
41487 silly gunzTarPerm extractEntry src/core/subjects/asyncsubject.js
41488 silly gunzTarPerm modified mode [ 'src/core/subjects/asyncsubject.js', 438, 436 ]
41489 silly gunzTarPerm extractEntry src/core/subjects/behaviorsubject.js
41490 silly gunzTarPerm modified mode [ 'src/core/subjects/behaviorsubject.js', 438, 436 ]
41491 silly fetchAndShaCheck shasum 3084cf3d41b59d15c813be6f259557fdc82b0660
41492 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/falafel/-/falafel-0.1.6.tgz not in flight; adding
41493 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41494 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/falafel/-/falafel-0.1.6.tgz
41495 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-55270c1482b0
41496 silly gentlyRm /tmp/npm-30115-af71656d/unpack-55270c1482b0 is being purged
41497 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-55270c1482b0
41498 silly gunzTarPerm extractEntry string/#/ends-with/implement.js
41499 silly gunzTarPerm modified mode [ 'string/#/ends-with/implement.js', 420, 436 ]
41500 silly gunzTarPerm extractEntry string/#/ends-with/index.js
41501 silly gunzTarPerm modified mode [ 'string/#/ends-with/index.js', 420, 436 ]
41502 silly gunzTarPerm modes [ '775', '664' ]
41503 silly gunzTarPerm extractEntry src/core/subjects/innersubscription.js
41504 silly gunzTarPerm modified mode [ 'src/core/subjects/innersubscription.js', 438, 436 ]
41505 silly gunzTarPerm extractEntry src/core/subjects/replaysubject.js
41506 silly gunzTarPerm modified mode [ 'src/core/subjects/replaysubject.js', 438, 436 ]
41507 silly gunzTarPerm extractEntry package.json
41508 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
41509 silly gunzTarPerm extractEntry string/#/ends-with/is-implemented.js
41510 silly gunzTarPerm modified mode [ 'string/#/ends-with/is-implemented.js', 420, 436 ]
41511 silly gunzTarPerm extractEntry string/#/ends-with/shim.js
41512 silly gunzTarPerm modified mode [ 'string/#/ends-with/shim.js', 420, 436 ]
41513 silly gunzTarPerm extractEntry index.js
41514 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
41515 silly gunzTarPerm extractEntry example/prompt.js
41516 silly gunzTarPerm modified mode [ 'example/prompt.js', 420, 436 ]
41517 silly gunzTarPerm extractEntry src/core/subjects/subject.js
41518 silly gunzTarPerm modified mode [ 'src/core/subjects/subject.js', 438, 436 ]
41519 silly gunzTarPerm extractEntry src/core/joins/activeplan.js
41520 silly gunzTarPerm modified mode [ 'src/core/joins/activeplan.js', 438, 436 ]
41521 silly gunzTarPerm extractEntry string/#/normalize/_data.js
41522 silly gunzTarPerm modified mode [ 'string/#/normalize/_data.js', 420, 436 ]
41523 silly gunzTarPerm extractEntry string/#/normalize/implement.js
41524 silly gunzTarPerm modified mode [ 'string/#/normalize/implement.js', 420, 436 ]
41525 silly gunzTarPerm extractEntry string/#/normalize/index.js
41526 silly gunzTarPerm modified mode [ 'string/#/normalize/index.js', 420, 436 ]
41527 silly gunzTarPerm extractEntry string/#/normalize/is-implemented.js
41528 silly gunzTarPerm modified mode [ 'string/#/normalize/is-implemented.js', 420, 436 ]
41529 silly gunzTarPerm extractEntry string/#/normalize/shim.js
41530 silly gunzTarPerm modified mode [ 'string/#/normalize/shim.js', 420, 436 ]
41531 silly gunzTarPerm extractEntry string/#/@@iterator/implement.js
41532 silly gunzTarPerm modified mode [ 'string/#/@@iterator/implement.js', 420, 436 ]
41533 silly gunzTarPerm extractEntry string/#/@@iterator/index.js
41534 silly gunzTarPerm modified mode [ 'string/#/@@iterator/index.js', 420, 436 ]
41535 silly gunzTarPerm extractEntry string/#/@@iterator/is-implemented.js
41536 silly gunzTarPerm modified mode [ 'string/#/@@iterator/is-implemented.js', 420, 436 ]
41537 silly gunzTarPerm extractEntry string/#/@@iterator/shim.js
41538 silly gunzTarPerm modified mode [ 'string/#/@@iterator/shim.js', 420, 436 ]
41539 silly gunzTarPerm extractEntry string/#/code-point-at/implement.js
41540 silly gunzTarPerm modified mode [ 'string/#/code-point-at/implement.js', 420, 436 ]
41541 silly gunzTarPerm extractEntry string/#/code-point-at/index.js
41542 silly gunzTarPerm modified mode [ 'string/#/code-point-at/index.js', 420, 436 ]
41543 silly gunzTarPerm extractEntry string/#/code-point-at/is-implemented.js
41544 silly gunzTarPerm modified mode [ 'string/#/code-point-at/is-implemented.js', 420, 436 ]
41545 silly gunzTarPerm extractEntry string/#/code-point-at/shim.js
41546 silly gunzTarPerm modified mode [ 'string/#/code-point-at/shim.js', 420, 436 ]
41547 silly gunzTarPerm extractEntry string/#/contains/implement.js
41548 silly gunzTarPerm modified mode [ 'string/#/contains/implement.js', 420, 436 ]
41549 silly gunzTarPerm extractEntry string/#/contains/index.js
41550 silly gunzTarPerm modified mode [ 'string/#/contains/index.js', 420, 436 ]
41551 silly gunzTarPerm extractEntry string/#/contains/is-implemented.js
41552 silly gunzTarPerm modified mode [ 'string/#/contains/is-implemented.js', 420, 436 ]
41553 silly gunzTarPerm extractEntry string/#/contains/shim.js
41554 silly gunzTarPerm modified mode [ 'string/#/contains/shim.js', 420, 436 ]
41555 silly gunzTarPerm extractEntry string/#/repeat/implement.js
41556 silly gunzTarPerm modified mode [ 'string/#/repeat/implement.js', 420, 436 ]
41557 silly gunzTarPerm extractEntry string/#/repeat/index.js
41558 silly gunzTarPerm modified mode [ 'string/#/repeat/index.js', 420, 436 ]
41559 silly gunzTarPerm extractEntry string/#/repeat/is-implemented.js
41560 silly gunzTarPerm modified mode [ 'string/#/repeat/is-implemented.js', 420, 436 ]
41561 silly gunzTarPerm extractEntry string/#/repeat/shim.js
41562 silly gunzTarPerm modified mode [ 'string/#/repeat/shim.js', 420, 436 ]
41563 silly gunzTarPerm extractEntry string/#/starts-with/implement.js
41564 silly gunzTarPerm modified mode [ 'string/#/starts-with/implement.js', 420, 436 ]
41565 silly gunzTarPerm extractEntry string/#/starts-with/index.js
41566 silly gunzTarPerm modified mode [ 'string/#/starts-with/index.js', 420, 436 ]
41567 silly gunzTarPerm extractEntry string/#/starts-with/is-implemented.js
41568 silly gunzTarPerm modified mode [ 'string/#/starts-with/is-implemented.js', 420, 436 ]
41569 silly gunzTarPerm extractEntry string/#/starts-with/shim.js
41570 silly gunzTarPerm modified mode [ 'string/#/starts-with/shim.js', 420, 436 ]
41571 silly gunzTarPerm extractEntry string/from-code-point/implement.js
41572 silly gunzTarPerm modified mode [ 'string/from-code-point/implement.js', 420, 436 ]
41573 silly gunzTarPerm extractEntry string/from-code-point/index.js
41574 silly gunzTarPerm modified mode [ 'string/from-code-point/index.js', 420, 436 ]
41575 silly gunzTarPerm extractEntry string/from-code-point/is-implemented.js
41576 silly gunzTarPerm modified mode [ 'string/from-code-point/is-implemented.js', 420, 436 ]
41577 silly gunzTarPerm extractEntry string/from-code-point/shim.js
41578 silly gunzTarPerm modified mode [ 'string/from-code-point/shim.js', 420, 436 ]
41579 silly gunzTarPerm extractEntry string/raw/implement.js
41580 silly gunzTarPerm modified mode [ 'string/raw/implement.js', 420, 436 ]
41581 silly gunzTarPerm extractEntry string/raw/index.js
41582 silly gunzTarPerm modified mode [ 'string/raw/index.js', 420, 436 ]
41583 silly gunzTarPerm extractEntry string/raw/is-implemented.js
41584 silly gunzTarPerm modified mode [ 'string/raw/is-implemented.js', 420, 436 ]
41585 silly gunzTarPerm extractEntry string/raw/shim.js
41586 silly gunzTarPerm modified mode [ 'string/raw/shim.js', 420, 436 ]
41587 silly gunzTarPerm extractEntry number/to-uint32.js
41588 silly gunzTarPerm modified mode [ 'number/to-uint32.js', 420, 436 ]
41589 silly gunzTarPerm extractEntry number/index.js
41590 silly gunzTarPerm modified mode [ 'number/index.js', 420, 436 ]
41591 silly gunzTarPerm extractEntry number/to-pos-integer.js
41592 silly gunzTarPerm modified mode [ 'number/to-pos-integer.js', 420, 436 ]
41593 silly gunzTarPerm extractEntry number/to-integer.js
41594 silly gunzTarPerm modified mode [ 'number/to-integer.js', 420, 436 ]
41595 silly gunzTarPerm extractEntry number/is-number.js
41596 silly gunzTarPerm modified mode [ 'number/is-number.js', 420, 436 ]
41597 silly gunzTarPerm extractEntry number/is-nan/implement.js
41598 silly gunzTarPerm modified mode [ 'number/is-nan/implement.js', 420, 436 ]
41599 silly gunzTarPerm extractEntry number/is-nan/index.js
41600 silly gunzTarPerm modified mode [ 'number/is-nan/index.js', 420, 436 ]
41601 silly gunzTarPerm extractEntry number/is-nan/is-implemented.js
41602 silly gunzTarPerm modified mode [ 'number/is-nan/is-implemented.js', 420, 436 ]
41603 silly gunzTarPerm extractEntry number/is-nan/shim.js
41604 silly gunzTarPerm modified mode [ 'number/is-nan/shim.js', 420, 436 ]
41605 silly gunzTarPerm extractEntry number/epsilon/implement.js
41606 silly gunzTarPerm modified mode [ 'number/epsilon/implement.js', 420, 436 ]
41607 silly gunzTarPerm extractEntry number/epsilon/index.js
41608 silly gunzTarPerm modified mode [ 'number/epsilon/index.js', 420, 436 ]
41609 silly gunzTarPerm extractEntry number/epsilon/is-implemented.js
41610 silly gunzTarPerm modified mode [ 'number/epsilon/is-implemented.js', 420, 436 ]
41611 silly gunzTarPerm extractEntry number/is-safe-integer/implement.js
41612 silly gunzTarPerm modified mode [ 'number/is-safe-integer/implement.js', 420, 436 ]
41613 silly gunzTarPerm extractEntry number/is-safe-integer/index.js
41614 silly gunzTarPerm modified mode [ 'number/is-safe-integer/index.js', 420, 436 ]
41615 silly gunzTarPerm extractEntry number/is-safe-integer/is-implemented.js
41616 silly gunzTarPerm modified mode [ 'number/is-safe-integer/is-implemented.js', 420, 436 ]
41617 silly gunzTarPerm extractEntry number/is-safe-integer/shim.js
41618 silly gunzTarPerm modified mode [ 'number/is-safe-integer/shim.js', 420, 436 ]
41619 silly gunzTarPerm extractEntry number/max-safe-integer/implement.js
41620 silly gunzTarPerm modified mode [ 'number/max-safe-integer/implement.js', 420, 436 ]
41621 silly gunzTarPerm extractEntry number/max-safe-integer/index.js
41622 silly gunzTarPerm modified mode [ 'number/max-safe-integer/index.js', 420, 436 ]
41623 silly gunzTarPerm extractEntry number/max-safe-integer/is-implemented.js
41624 silly gunzTarPerm modified mode [ 'number/max-safe-integer/is-implemented.js', 420, 436 ]
41625 silly gunzTarPerm extractEntry number/min-safe-integer/implement.js
41626 silly gunzTarPerm modified mode [ 'number/min-safe-integer/implement.js', 420, 436 ]
41627 silly gunzTarPerm extractEntry number/min-safe-integer/index.js
41628 silly gunzTarPerm modified mode [ 'number/min-safe-integer/index.js', 420, 436 ]
41629 silly gunzTarPerm extractEntry number/min-safe-integer/is-implemented.js
41630 silly gunzTarPerm modified mode [ 'number/min-safe-integer/is-implemented.js', 420, 436 ]
41631 silly gunzTarPerm extractEntry number/is-integer/implement.js
41632 silly gunzTarPerm modified mode [ 'number/is-integer/implement.js', 420, 436 ]
41633 silly gunzTarPerm extractEntry number/is-integer/index.js
41634 silly gunzTarPerm modified mode [ 'number/is-integer/index.js', 420, 436 ]
41635 silly gunzTarPerm extractEntry number/is-integer/is-implemented.js
41636 silly gunzTarPerm modified mode [ 'number/is-integer/is-implemented.js', 420, 436 ]
41637 silly gunzTarPerm extractEntry number/is-integer/shim.js
41638 silly gunzTarPerm modified mode [ 'number/is-integer/shim.js', 420, 436 ]
41639 silly gunzTarPerm extractEntry number/is-finite/implement.js
41640 silly gunzTarPerm modified mode [ 'number/is-finite/implement.js', 420, 436 ]
41641 silly gunzTarPerm extractEntry number/is-finite/index.js
41642 silly gunzTarPerm modified mode [ 'number/is-finite/index.js', 420, 436 ]
41643 silly gunzTarPerm extractEntry number/is-finite/is-implemented.js
41644 silly gunzTarPerm modified mode [ 'number/is-finite/is-implemented.js', 420, 436 ]
41645 silly gunzTarPerm extractEntry number/is-finite/shim.js
41646 silly gunzTarPerm modified mode [ 'number/is-finite/shim.js', 420, 436 ]
41647 silly gunzTarPerm extractEntry number/#/index.js
41648 silly gunzTarPerm modified mode [ 'number/#/index.js', 420, 436 ]
41649 silly gunzTarPerm extractEntry number/#/pad.js
41650 silly gunzTarPerm modified mode [ 'number/#/pad.js', 420, 436 ]
41651 silly gunzTarPerm extractEntry object/_iterate.js
41652 silly gunzTarPerm modified mode [ 'object/_iterate.js', 420, 436 ]
41653 silly gunzTarPerm extractEntry object/is-callable.js
41654 silly gunzTarPerm modified mode [ 'object/is-callable.js', 420, 436 ]
41655 silly gunzTarPerm extractEntry object/is-copy-deep.js
41656 silly gunzTarPerm modified mode [ 'object/is-copy-deep.js', 420, 436 ]
41657 silly gunzTarPerm extractEntry object/is-copy.js
41658 silly gunzTarPerm modified mode [ 'object/is-copy.js', 420, 436 ]
41659 silly gunzTarPerm extractEntry object/is-array-like.js
41660 silly gunzTarPerm modified mode [ 'object/is-array-like.js', 420, 436 ]
41661 silly gunzTarPerm extractEntry object/is-object.js
41662 silly gunzTarPerm modified mode [ 'object/is-object.js', 420, 436 ]
41663 silly gunzTarPerm extractEntry object/validate-stringifiable-value.js
41664 silly gunzTarPerm modified mode [ 'object/validate-stringifiable-value.js', 420, 436 ]
41665 silly gunzTarPerm extractEntry object/is.js
41666 silly gunzTarPerm modified mode [ 'object/is.js', 420, 436 ]
41667 silly gunzTarPerm extractEntry object/key-of.js
41668 silly gunzTarPerm modified mode [ 'object/key-of.js', 420, 436 ]
41669 silly gunzTarPerm extractEntry object/validate-array-like.js
41670 silly gunzTarPerm modified mode [ 'object/validate-array-like.js', 420, 436 ]
41671 silly gunzTarPerm extractEntry object/index.js
41672 silly gunzTarPerm modified mode [ 'object/index.js', 420, 436 ]
41673 silly gunzTarPerm extractEntry object/map-keys.js
41674 silly gunzTarPerm modified mode [ 'object/map-keys.js', 420, 436 ]
41675 silly gunzTarPerm extractEntry object/get-property-names.js
41676 silly gunzTarPerm modified mode [ 'object/get-property-names.js', 420, 436 ]
41677 silly gunzTarPerm extractEntry object/map.js
41678 silly gunzTarPerm modified mode [ 'object/map.js', 420, 436 ]
41679 silly gunzTarPerm extractEntry object/for-each.js
41680 silly gunzTarPerm modified mode [ 'object/for-each.js', 420, 436 ]
41681 silly gunzTarPerm extractEntry object/mixin-prototypes.js
41682 silly gunzTarPerm modified mode [ 'object/mixin-prototypes.js', 420, 436 ]
41683 silly gunzTarPerm extractEntry object/flatten.js
41684 silly gunzTarPerm modified mode [ 'object/flatten.js', 420, 436 ]
41685 silly gunzTarPerm extractEntry object/mixin.js
41686 silly gunzTarPerm modified mode [ 'object/mixin.js', 420, 436 ]
41687 silly gunzTarPerm extractEntry object/first-key.js
41688 silly gunzTarPerm modified mode [ 'object/first-key.js', 420, 436 ]
41689 silly gunzTarPerm extractEntry object/normalize-options.js
41690 silly gunzTarPerm modified mode [ 'object/normalize-options.js', 420, 436 ]
41691 silly gunzTarPerm extractEntry object/filter.js
41692 silly gunzTarPerm modified mode [ 'object/filter.js', 420, 436 ]
41693 silly gunzTarPerm extractEntry object/primitive-set.js
41694 silly gunzTarPerm modified mode [ 'object/primitive-set.js', 420, 436 ]
41695 silly gunzTarPerm extractEntry object/every.js
41696 silly gunzTarPerm modified mode [ 'object/every.js', 420, 436 ]
41697 silly gunzTarPerm extractEntry object/safe-traverse.js
41698 silly gunzTarPerm modified mode [ 'object/safe-traverse.js', 420, 436 ]
41699 silly gunzTarPerm extractEntry object/eq.js
41700 silly gunzTarPerm modified mode [ 'object/eq.js', 420, 436 ]
41701 silly gunzTarPerm extractEntry object/serialize.js
41702 silly gunzTarPerm modified mode [ 'object/serialize.js', 420, 436 ]
41703 silly gunzTarPerm extractEntry object/create.js
41704 silly gunzTarPerm modified mode [ 'object/create.js', 420, 436 ]
41705 silly gunzTarPerm extractEntry object/validate-array-like-object.js
41706 silly gunzTarPerm modified mode [ 'object/validate-array-like-object.js', 420, 436 ]
41707 silly gunzTarPerm extractEntry object/count.js
41708 silly gunzTarPerm modified mode [ 'object/count.js', 420, 436 ]
41709 silly gunzTarPerm extractEntry object/some.js
41710 silly gunzTarPerm modified mode [ 'object/some.js', 420, 436 ]
41711 silly gunzTarPerm extractEntry object/copy.js
41712 silly gunzTarPerm modified mode [ 'object/copy.js', 420, 436 ]
41713 silly gunzTarPerm extractEntry object/to-array.js
41714 silly gunzTarPerm modified mode [ 'object/to-array.js', 420, 436 ]
41715 silly gunzTarPerm extractEntry object/copy-deep.js
41716 silly gunzTarPerm modified mode [ 'object/copy-deep.js', 420, 436 ]
41717 silly gunzTarPerm extractEntry object/unserialize.js
41718 silly gunzTarPerm modified mode [ 'object/unserialize.js', 420, 436 ]
41719 silly gunzTarPerm extractEntry object/compare.js
41720 silly gunzTarPerm modified mode [ 'object/compare.js', 420, 436 ]
41721 silly gunzTarPerm extractEntry object/valid-callable.js
41722 silly gunzTarPerm modified mode [ 'object/valid-callable.js', 420, 436 ]
41723 silly gunzTarPerm extractEntry object/compact.js
41724 silly gunzTarPerm modified mode [ 'object/compact.js', 420, 436 ]
41725 silly gunzTarPerm extractEntry object/valid-object.js
41726 silly gunzTarPerm modified mode [ 'object/valid-object.js', 420, 436 ]
41727 silly gunzTarPerm extractEntry object/clear.js
41728 silly gunzTarPerm modified mode [ 'object/clear.js', 420, 436 ]
41729 silly gunzTarPerm extractEntry object/valid-value.js
41730 silly gunzTarPerm modified mode [ 'object/valid-value.js', 420, 436 ]
41731 silly gunzTarPerm extractEntry object/is-empty.js
41732 silly gunzTarPerm modified mode [ 'object/is-empty.js', 420, 436 ]
41733 silly gunzTarPerm extractEntry object/validate-stringifiable.js
41734 silly gunzTarPerm modified mode [ 'object/validate-stringifiable.js', 420, 436 ]
41735 silly gunzTarPerm extractEntry object/is-plain-object.js
41736 silly gunzTarPerm modified mode [ 'object/is-plain-object.js', 420, 436 ]
41737 silly gunzTarPerm extractEntry object/set-prototype-of/implement.js
41738 silly gunzTarPerm modified mode [ 'object/set-prototype-of/implement.js', 420, 436 ]
41739 silly gunzTarPerm extractEntry object/set-prototype-of/index.js
41740 silly gunzTarPerm modified mode [ 'object/set-prototype-of/index.js', 420, 436 ]
41741 silly gunzTarPerm extractEntry object/set-prototype-of/is-implemented.js
41742 silly gunzTarPerm modified mode [ 'object/set-prototype-of/is-implemented.js', 420, 436 ]
41743 silly gunzTarPerm extractEntry object/set-prototype-of/shim.js
41744 silly gunzTarPerm modified mode [ 'object/set-prototype-of/shim.js', 420, 436 ]
41745 silly gunzTarPerm extractEntry object/keys/implement.js
41746 silly gunzTarPerm modified mode [ 'object/keys/implement.js', 420, 436 ]
41747 silly gunzTarPerm extractEntry object/keys/index.js
41748 silly gunzTarPerm modified mode [ 'object/keys/index.js', 420, 436 ]
41749 silly gunzTarPerm extractEntry object/keys/is-implemented.js
41750 silly gunzTarPerm modified mode [ 'object/keys/is-implemented.js', 420, 436 ]
41751 silly gunzTarPerm extractEntry object/keys/shim.js
41752 silly gunzTarPerm modified mode [ 'object/keys/shim.js', 420, 436 ]
41753 silly gunzTarPerm extractEntry object/assign/implement.js
41754 silly gunzTarPerm modified mode [ 'object/assign/implement.js', 420, 436 ]
41755 silly gunzTarPerm extractEntry object/assign/index.js
41756 silly gunzTarPerm modified mode [ 'object/assign/index.js', 420, 436 ]
41757 silly gunzTarPerm extractEntry object/assign/is-implemented.js
41758 silly gunzTarPerm modified mode [ 'object/assign/is-implemented.js', 420, 436 ]
41759 silly gunzTarPerm extractEntry object/assign/shim.js
41760 silly gunzTarPerm modified mode [ 'object/assign/shim.js', 420, 436 ]
41761 silly gunzTarPerm extractEntry test/__tad.js
41762 silly gunzTarPerm modified mode [ 'test/__tad.js', 420, 436 ]
41763 silly gunzTarPerm extractEntry test/global.js
41764 silly gunzTarPerm modified mode [ 'test/global.js', 420, 436 ]
41765 silly gunzTarPerm extractEntry test/iterable/for-each.js
41766 silly gunzTarPerm modified mode [ 'test/iterable/for-each.js', 420, 436 ]
41767 silly gunzTarPerm extractEntry test/iterable/is.js
41768 silly gunzTarPerm modified mode [ 'test/iterable/is.js', 420, 436 ]
41769 silly gunzTarPerm extractEntry test/iterable/validate-object.js
41770 silly gunzTarPerm modified mode [ 'test/iterable/validate-object.js', 420, 436 ]
41771 silly gunzTarPerm extractEntry test/iterable/validate.js
41772 silly gunzTarPerm modified mode [ 'test/iterable/validate.js', 420, 436 ]
41773 silly gunzTarPerm extractEntry test/boolean/is-boolean.js
41774 silly gunzTarPerm modified mode [ 'test/boolean/is-boolean.js', 420, 436 ]
41775 silly gunzTarPerm extractEntry test/error/custom.js
41776 silly gunzTarPerm modified mode [ 'test/error/custom.js', 420, 436 ]
41777 silly gunzTarPerm extractEntry test/error/is-error.js
41778 silly gunzTarPerm modified mode [ 'test/error/is-error.js', 420, 436 ]
41779 silly gunzTarPerm extractEntry test/error/valid-error.js
41780 silly gunzTarPerm modified mode [ 'test/error/valid-error.js', 420, 436 ]
41781 silly gunzTarPerm extractEntry test/error/#/throw.js
41782 silly gunzTarPerm modified mode [ 'test/error/#/throw.js', 420, 436 ]
41783 silly gunzTarPerm extractEntry test/function/_define-length.js
41784 silly gunzTarPerm modified mode [ 'test/function/_define-length.js', 420, 436 ]
41785 silly gunzTarPerm extractEntry test/function/constant.js
41786 silly gunzTarPerm modified mode [ 'test/function/constant.js', 420, 436 ]
41787 silly gunzTarPerm extractEntry test/function/identity.js
41788 silly gunzTarPerm modified mode [ 'test/function/identity.js', 420, 436 ]
41789 silly gunzTarPerm extractEntry test/function/invoke.js
41790 silly gunzTarPerm modified mode [ 'test/function/invoke.js', 420, 436 ]
41791 silly gunzTarPerm extractEntry test/function/is-arguments.js
41792 silly gunzTarPerm modified mode [ 'test/function/is-arguments.js', 420, 436 ]
41793 silly gunzTarPerm extractEntry test/function/is-function.js
41794 silly gunzTarPerm modified mode [ 'test/function/is-function.js', 420, 436 ]
41795 silly gunzTarPerm extractEntry test/function/noop.js
41796 silly gunzTarPerm modified mode [ 'test/function/noop.js', 420, 436 ]
41797 silly gunzTarPerm extractEntry test/function/pluck.js
41798 silly gunzTarPerm modified mode [ 'test/function/pluck.js', 420, 436 ]
41799 silly gunzTarPerm extractEntry test/function/valid-function.js
41800 silly gunzTarPerm modified mode [ 'test/function/valid-function.js', 420, 436 ]
41801 silly gunzTarPerm extractEntry test/function/#/compose.js
41802 silly gunzTarPerm modified mode [ 'test/function/#/compose.js', 420, 436 ]
41803 silly gunzTarPerm extractEntry test/function/#/copy.js
41804 silly gunzTarPerm modified mode [ 'test/function/#/copy.js', 420, 436 ]
41805 silly gunzTarPerm extractEntry test/function/#/curry.js
41806 silly gunzTarPerm modified mode [ 'test/function/#/curry.js', 420, 436 ]
41807 silly gunzTarPerm extractEntry test/function/#/lock.js
41808 silly gunzTarPerm modified mode [ 'test/function/#/lock.js', 420, 436 ]
41809 silly gunzTarPerm extractEntry test/function/#/not.js
41810 silly gunzTarPerm modified mode [ 'test/function/#/not.js', 420, 436 ]
41811 silly gunzTarPerm extractEntry test/function/#/partial.js
41812 silly gunzTarPerm modified mode [ 'test/function/#/partial.js', 420, 436 ]
41813 silly gunzTarPerm extractEntry test/function/#/spread.js
41814 silly gunzTarPerm modified mode [ 'test/function/#/spread.js', 420, 436 ]
41815 silly gunzTarPerm extractEntry test/function/#/to-string-tokens.js
41816 silly gunzTarPerm modified mode [ 'test/function/#/to-string-tokens.js', 420, 436 ]
41817 silly gunzTarPerm extractEntry test/array/valid-array.js
41818 silly gunzTarPerm modified mode [ 'test/array/valid-array.js', 420, 436 ]
41819 silly gunzTarPerm extractEntry test/array/_is-extensible.js
41820 silly gunzTarPerm modified mode [ 'test/array/_is-extensible.js', 420, 436 ]
41821 silly gunzTarPerm extractEntry test/array/_sub-array-dummy-safe.js
41822 silly gunzTarPerm modified mode [ 'test/array/_sub-array-dummy-safe.js', 420, 436 ]
41823 silly gunzTarPerm extractEntry test/array/_sub-array-dummy.js
41824 silly gunzTarPerm modified mode [ 'test/array/_sub-array-dummy.js', 420, 436 ]
41825 silly gunzTarPerm extractEntry test/array/__scopes.js
41826 silly gunzTarPerm modified mode [ 'test/array/__scopes.js', 420, 436 ]
41827 silly gunzTarPerm extractEntry test/array/generate.js
41828 silly gunzTarPerm modified mode [ 'test/array/generate.js', 420, 436 ]
41829 silly gunzTarPerm extractEntry test/array/is-plain-array.js
41830 silly gunzTarPerm modified mode [ 'test/array/is-plain-array.js', 420, 436 ]
41831 silly gunzTarPerm extractEntry test/array/to-array.js
41832 silly gunzTarPerm modified mode [ 'test/array/to-array.js', 420, 436 ]
41833 silly gunzTarPerm extractEntry test/array/of/implement.js
41834 silly gunzTarPerm modified mode [ 'test/array/of/implement.js', 420, 436 ]
41835 silly gunzTarPerm extractEntry test/array/of/index.js
41836 silly gunzTarPerm modified mode [ 'test/array/of/index.js', 420, 436 ]
41837 silly gunzTarPerm extractEntry test/array/of/is-implemented.js
41838 silly gunzTarPerm modified mode [ 'test/array/of/is-implemented.js', 420, 436 ]
41839 silly gunzTarPerm extractEntry test/array/of/shim.js
41840 silly gunzTarPerm modified mode [ 'test/array/of/shim.js', 420, 436 ]
41841 silly gunzTarPerm extractEntry test/array/#/first.js
41842 silly gunzTarPerm modified mode [ 'test/array/#/first.js', 420, 436 ]
41843 silly gunzTarPerm extractEntry test/array/#/exclusion.js
41844 silly gunzTarPerm modified mode [ 'test/array/#/exclusion.js', 420, 436 ]
41845 silly gunzTarPerm extractEntry test/array/#/first-index.js
41846 silly gunzTarPerm modified mode [ 'test/array/#/first-index.js', 420, 436 ]
41847 silly gunzTarPerm extractEntry test/array/#/_compare-by-length.js
41848 silly gunzTarPerm modified mode [ 'test/array/#/_compare-by-length.js', 420, 436 ]
41849 silly gunzTarPerm extractEntry test/array/#/flatten.js
41850 silly gunzTarPerm modified mode [ 'test/array/#/flatten.js', 420, 436 ]
41851 silly gunzTarPerm extractEntry test/array/#/e-last-index-of.js
41852 silly gunzTarPerm modified mode [ 'test/array/#/e-last-index-of.js', 420, 436 ]
41853 silly gunzTarPerm extractEntry test/array/#/group.js
41854 silly gunzTarPerm modified mode [ 'test/array/#/group.js', 420, 436 ]
41855 silly gunzTarPerm extractEntry test/array/#/indexes-of.js
41856 silly gunzTarPerm modified mode [ 'test/array/#/indexes-of.js', 420, 436 ]
41857 silly gunzTarPerm extractEntry test/array/#/intersection.js
41858 silly gunzTarPerm modified mode [ 'test/array/#/intersection.js', 420, 436 ]
41859 silly gunzTarPerm extractEntry test/array/#/is-copy.js
41860 silly gunzTarPerm modified mode [ 'test/array/#/is-copy.js', 420, 436 ]
41861 silly gunzTarPerm extractEntry test/array/#/is-uniq.js
41862 silly gunzTarPerm modified mode [ 'test/array/#/is-uniq.js', 420, 436 ]
41863 silly gunzTarPerm extractEntry test/array/#/e-index-of.js
41864 silly gunzTarPerm modified mode [ 'test/array/#/e-index-of.js', 420, 436 ]
41865 silly gunzTarPerm extractEntry test/array/#/last-index.js
41866 silly gunzTarPerm modified mode [ 'test/array/#/last-index.js', 420, 436 ]
41867 silly gunzTarPerm extractEntry test/array/#/diff.js
41868 silly gunzTarPerm modified mode [ 'test/array/#/diff.js', 420, 436 ]
41869 silly gunzTarPerm extractEntry test/array/#/last.js
41870 silly gunzTarPerm modified mode [ 'test/array/#/last.js', 420, 436 ]
41871 silly gunzTarPerm extractEntry test/array/#/contains.js
41872 silly gunzTarPerm modified mode [ 'test/array/#/contains.js', 420, 436 ]
41873 silly gunzTarPerm extractEntry test/array/#/remove.js
41874 silly gunzTarPerm modified mode [ 'test/array/#/remove.js', 420, 436 ]
41875 silly gunzTarPerm extractEntry test/array/#/compact.js
41876 silly gunzTarPerm modified mode [ 'test/array/#/compact.js', 420, 436 ]
41877 silly gunzTarPerm extractEntry test/array/#/separate.js
41878 silly gunzTarPerm modified mode [ 'test/array/#/separate.js', 420, 436 ]
41879 silly gunzTarPerm extractEntry test/array/#/clear.js
41880 silly gunzTarPerm modified mode [ 'test/array/#/clear.js', 420, 436 ]
41881 silly gunzTarPerm extractEntry test/array/#/some-right.js
41882 silly gunzTarPerm modified mode [ 'test/array/#/some-right.js', 420, 436 ]
41883 silly gunzTarPerm extractEntry test/array/#/binary-search.js
41884 silly gunzTarPerm modified mode [ 'test/array/#/binary-search.js', 420, 436 ]
41885 silly gunzTarPerm extractEntry test/array/#/uniq.js
41886 silly gunzTarPerm modified mode [ 'test/array/#/uniq.js', 420, 436 ]
41887 silly gunzTarPerm extractEntry test/array/#/for-each-right.js
41888 silly gunzTarPerm modified mode [ 'test/array/#/for-each-right.js', 420, 436 ]
41889 silly gunzTarPerm extractEntry test/array/#/find-index/implement.js
41890 silly gunzTarPerm modified mode [ 'test/array/#/find-index/implement.js', 420, 436 ]
41891 silly gunzTarPerm extractEntry test/array/#/find-index/index.js
41892 silly gunzTarPerm modified mode [ 'test/array/#/find-index/index.js', 420, 436 ]
41893 silly gunzTarPerm extractEntry test/array/#/find-index/is-implemented.js
41894 silly gunzTarPerm modified mode [ 'test/array/#/find-index/is-implemented.js', 420, 436 ]
41895 silly gunzTarPerm extractEntry test/array/#/find-index/shim.js
41896 silly gunzTarPerm modified mode [ 'test/array/#/find-index/shim.js', 420, 436 ]
41897 silly gunzTarPerm extractEntry test/array/#/@@iterator/implement.js
41898 silly gunzTarPerm modified mode [ 'test/array/#/@@iterator/implement.js', 420, 436 ]
41899 silly gunzTarPerm extractEntry test/array/#/@@iterator/index.js
41900 silly gunzTarPerm modified mode [ 'test/array/#/@@iterator/index.js', 420, 436 ]
41901 silly gunzTarPerm extractEntry test/array/#/@@iterator/is-implemented.js
41902 silly gunzTarPerm modified mode [ 'test/array/#/@@iterator/is-implemented.js', 420, 436 ]
41903 silly gunzTarPerm extractEntry test/array/#/@@iterator/shim.js
41904 silly gunzTarPerm modified mode [ 'test/array/#/@@iterator/shim.js', 420, 436 ]
41905 silly gunzTarPerm extractEntry test/array/#/keys/implement.js
41906 silly gunzTarPerm modified mode [ 'test/array/#/keys/implement.js', 420, 436 ]
41907 silly gunzTarPerm extractEntry test/array/#/keys/index.js
41908 silly gunzTarPerm modified mode [ 'test/array/#/keys/index.js', 420, 436 ]
41909 silly gunzTarPerm extractEntry test/array/#/keys/is-implemented.js
41910 silly gunzTarPerm modified mode [ 'test/array/#/keys/is-implemented.js', 420, 436 ]
41911 silly gunzTarPerm extractEntry test/array/#/keys/shim.js
41912 silly gunzTarPerm modified mode [ 'test/array/#/keys/shim.js', 420, 436 ]
41913 silly gunzTarPerm extractEntry test/array/#/copy-within/implement.js
41914 silly gunzTarPerm modified mode [ 'test/array/#/copy-within/implement.js', 420, 436 ]
41915 silly gunzTarPerm extractEntry test/array/#/copy-within/index.js
41916 silly gunzTarPerm modified mode [ 'test/array/#/copy-within/index.js', 420, 436 ]
41917 silly gunzTarPerm extractEntry test/array/#/copy-within/is-implemented.js
41918 silly gunzTarPerm modified mode [ 'test/array/#/copy-within/is-implemented.js', 420, 436 ]
41919 silly gunzTarPerm extractEntry test/array/#/copy-within/shim.js
41920 silly gunzTarPerm modified mode [ 'test/array/#/copy-within/shim.js', 420, 436 ]
41921 silly gunzTarPerm extractEntry test/array/#/entries/implement.js
41922 silly gunzTarPerm modified mode [ 'test/array/#/entries/implement.js', 420, 436 ]
41923 silly gunzTarPerm extractEntry test/array/#/entries/index.js
41924 silly gunzTarPerm modified mode [ 'test/array/#/entries/index.js', 420, 436 ]
41925 silly gunzTarPerm extractEntry test/array/#/entries/is-implemented.js
41926 silly gunzTarPerm modified mode [ 'test/array/#/entries/is-implemented.js', 420, 436 ]
41927 silly gunzTarPerm extractEntry test/array/#/entries/shim.js
41928 silly gunzTarPerm modified mode [ 'test/array/#/entries/shim.js', 420, 436 ]
41929 silly gunzTarPerm extractEntry test/array/#/map/implement.js
41930 silly gunzTarPerm modified mode [ 'test/array/#/map/implement.js', 420, 436 ]
41931 silly gunzTarPerm extractEntry test/array/#/map/index.js
41932 silly gunzTarPerm modified mode [ 'test/array/#/map/index.js', 420, 436 ]
41933 silly gunzTarPerm extractEntry test/array/#/map/is-implemented.js
41934 silly gunzTarPerm modified mode [ 'test/array/#/map/is-implemented.js', 420, 436 ]
41935 silly gunzTarPerm extractEntry test/array/#/map/shim.js
41936 silly gunzTarPerm modified mode [ 'test/array/#/map/shim.js', 420, 436 ]
41937 silly gunzTarPerm extractEntry test/array/#/concat/implement.js
41938 silly gunzTarPerm modified mode [ 'test/array/#/concat/implement.js', 420, 436 ]
41939 silly gunzTarPerm extractEntry test/array/#/concat/index.js
41940 silly gunzTarPerm modified mode [ 'test/array/#/concat/index.js', 420, 436 ]
41941 silly gunzTarPerm extractEntry test/array/#/concat/is-implemented.js
41942 silly gunzTarPerm modified mode [ 'test/array/#/concat/is-implemented.js', 420, 436 ]
41943 silly gunzTarPerm extractEntry test/array/#/concat/shim.js
41944 silly gunzTarPerm modified mode [ 'test/array/#/concat/shim.js', 420, 436 ]
41945 silly gunzTarPerm extractEntry test/array/#/fill/implement.js
41946 silly gunzTarPerm modified mode [ 'test/array/#/fill/implement.js', 420, 436 ]
41947 silly gunzTarPerm extractEntry test/array/#/fill/index.js
41948 silly gunzTarPerm modified mode [ 'test/array/#/fill/index.js', 420, 436 ]
41949 silly gunzTarPerm extractEntry test/array/#/fill/is-implemented.js
41950 silly gunzTarPerm modified mode [ 'test/array/#/fill/is-implemented.js', 420, 436 ]
41951 silly gunzTarPerm extractEntry test/array/#/fill/shim.js
41952 silly gunzTarPerm modified mode [ 'test/array/#/fill/shim.js', 420, 436 ]
41953 silly gunzTarPerm extractEntry test/array/#/slice/implement.js
41954 silly gunzTarPerm modified mode [ 'test/array/#/slice/implement.js', 420, 436 ]
41955 silly gunzTarPerm extractEntry test/array/#/slice/index.js
41956 silly gunzTarPerm modified mode [ 'test/array/#/slice/index.js', 420, 436 ]
41957 silly gunzTarPerm extractEntry test/array/#/slice/is-implemented.js
41958 silly gunzTarPerm modified mode [ 'test/array/#/slice/is-implemented.js', 420, 436 ]
41959 silly gunzTarPerm extractEntry test/array/#/slice/shim.js
41960 silly gunzTarPerm modified mode [ 'test/array/#/slice/shim.js', 420, 436 ]
41961 silly gunzTarPerm extractEntry test/array/#/filter/implement.js
41962 silly gunzTarPerm modified mode [ 'test/array/#/filter/implement.js', 420, 436 ]
41963 silly gunzTarPerm extractEntry test/array/#/filter/index.js
41964 silly gunzTarPerm modified mode [ 'test/array/#/filter/index.js', 420, 436 ]
41965 silly gunzTarPerm extractEntry test/array/#/filter/is-implemented.js
41966 silly gunzTarPerm modified mode [ 'test/array/#/filter/is-implemented.js', 420, 436 ]
41967 silly gunzTarPerm extractEntry test/array/#/filter/shim.js
41968 silly gunzTarPerm modified mode [ 'test/array/#/filter/shim.js', 420, 436 ]
41969 silly gunzTarPerm extractEntry test/array/#/splice/implement.js
41970 silly gunzTarPerm modified mode [ 'test/array/#/splice/implement.js', 420, 436 ]
41971 silly gunzTarPerm extractEntry test/array/#/splice/index.js
41972 silly gunzTarPerm modified mode [ 'test/array/#/splice/index.js', 420, 436 ]
41973 silly gunzTarPerm extractEntry test/array/#/splice/is-implemented.js
41974 silly gunzTarPerm modified mode [ 'test/array/#/splice/is-implemented.js', 420, 436 ]
41975 silly gunzTarPerm extractEntry test/array/#/splice/shim.js
41976 silly gunzTarPerm modified mode [ 'test/array/#/splice/shim.js', 420, 436 ]
41977 silly gunzTarPerm extractEntry test/array/#/find/implement.js
41978 silly gunzTarPerm modified mode [ 'test/array/#/find/implement.js', 420, 436 ]
41979 silly gunzTarPerm extractEntry test/array/#/find/index.js
41980 silly gunzTarPerm modified mode [ 'test/array/#/find/index.js', 420, 436 ]
41981 silly gunzTarPerm extractEntry test/array/#/find/is-implemented.js
41982 silly gunzTarPerm modified mode [ 'test/array/#/find/is-implemented.js', 420, 436 ]
41983 silly gunzTarPerm extractEntry test/array/#/find/shim.js
41984 silly gunzTarPerm modified mode [ 'test/array/#/find/shim.js', 420, 436 ]
41985 silly gunzTarPerm extractEntry test/array/#/values/implement.js
41986 silly gunzTarPerm modified mode [ 'test/array/#/values/implement.js', 420, 436 ]
41987 silly gunzTarPerm extractEntry test/array/#/values/index.js
41988 silly gunzTarPerm modified mode [ 'test/array/#/values/index.js', 420, 436 ]
41989 silly gunzTarPerm extractEntry test/array/#/values/is-implemented.js
41990 silly gunzTarPerm modified mode [ 'test/array/#/values/is-implemented.js', 420, 436 ]
41991 silly gunzTarPerm extractEntry test/array/#/values/shim.js
41992 silly gunzTarPerm modified mode [ 'test/array/#/values/shim.js', 420, 436 ]
41993 silly gunzTarPerm extractEntry test/array/from/implement.js
41994 silly gunzTarPerm modified mode [ 'test/array/from/implement.js', 420, 436 ]
41995 silly gunzTarPerm extractEntry test/array/from/index.js
41996 silly gunzTarPerm modified mode [ 'test/array/from/index.js', 420, 436 ]
41997 silly gunzTarPerm extractEntry test/array/from/is-implemented.js
41998 silly gunzTarPerm modified mode [ 'test/array/from/is-implemented.js', 420, 436 ]
41999 silly gunzTarPerm extractEntry test/array/from/shim.js
42000 silly gunzTarPerm modified mode [ 'test/array/from/shim.js', 420, 436 ]
42001 silly gunzTarPerm extractEntry test/date/is-date.js
42002 silly gunzTarPerm modified mode [ 'test/date/is-date.js', 420, 436 ]
42003 silly gunzTarPerm extractEntry test/date/valid-date.js
42004 silly gunzTarPerm modified mode [ 'test/date/valid-date.js', 420, 436 ]
42005 silly gunzTarPerm extractEntry test/date/#/copy.js
42006 silly gunzTarPerm modified mode [ 'test/date/#/copy.js', 420, 436 ]
42007 silly gunzTarPerm extractEntry test/date/#/days-in-month.js
42008 silly gunzTarPerm modified mode [ 'test/date/#/days-in-month.js', 420, 436 ]
42009 silly gunzTarPerm extractEntry test/date/#/floor-day.js
42010 silly gunzTarPerm modified mode [ 'test/date/#/floor-day.js', 420, 436 ]
42011 silly gunzTarPerm extractEntry test/date/#/floor-month.js
42012 silly gunzTarPerm modified mode [ 'test/date/#/floor-month.js', 420, 436 ]
42013 silly gunzTarPerm extractEntry test/date/#/floor-year.js
42014 silly gunzTarPerm modified mode [ 'test/date/#/floor-year.js', 420, 436 ]
42015 silly gunzTarPerm extractEntry test/date/#/format.js
42016 silly gunzTarPerm modified mode [ 'test/date/#/format.js', 420, 436 ]
42017 silly gunzTarPerm extractEntry test/math/_pack-ieee754.js
42018 silly gunzTarPerm modified mode [ 'test/math/_pack-ieee754.js', 420, 436 ]
42019 silly gunzTarPerm extractEntry test/math/_unpack-ieee754.js
42020 silly gunzTarPerm modified mode [ 'test/math/_unpack-ieee754.js', 420, 436 ]
42021 silly gunzTarPerm extractEntry test/math/acosh/implement.js
42022 silly gunzTarPerm modified mode [ 'test/math/acosh/implement.js', 420, 436 ]
42023 silly gunzTarPerm extractEntry test/math/acosh/index.js
42024 silly gunzTarPerm modified mode [ 'test/math/acosh/index.js', 420, 436 ]
42025 silly gunzTarPerm extractEntry test/math/acosh/is-implemented.js
42026 silly gunzTarPerm modified mode [ 'test/math/acosh/is-implemented.js', 420, 436 ]
42027 silly gunzTarPerm extractEntry test/math/acosh/shim.js
42028 silly gunzTarPerm modified mode [ 'test/math/acosh/shim.js', 420, 436 ]
42029 silly gunzTarPerm extractEntry test/math/asinh/implement.js
42030 silly gunzTarPerm modified mode [ 'test/math/asinh/implement.js', 420, 436 ]
42031 silly gunzTarPerm extractEntry test/math/asinh/index.js
42032 silly gunzTarPerm modified mode [ 'test/math/asinh/index.js', 420, 436 ]
42033 silly gunzTarPerm extractEntry test/math/asinh/is-implemented.js
42034 silly gunzTarPerm modified mode [ 'test/math/asinh/is-implemented.js', 420, 436 ]
42035 silly gunzTarPerm extractEntry test/math/asinh/shim.js
42036 silly gunzTarPerm modified mode [ 'test/math/asinh/shim.js', 420, 436 ]
42037 silly gunzTarPerm extractEntry test/math/atanh/implement.js
42038 silly gunzTarPerm modified mode [ 'test/math/atanh/implement.js', 420, 436 ]
42039 silly gunzTarPerm extractEntry test/math/atanh/index.js
42040 silly gunzTarPerm modified mode [ 'test/math/atanh/index.js', 420, 436 ]
42041 silly gunzTarPerm extractEntry test/math/atanh/is-implemented.js
42042 silly gunzTarPerm modified mode [ 'test/math/atanh/is-implemented.js', 420, 436 ]
42043 silly gunzTarPerm extractEntry test/math/atanh/shim.js
42044 silly gunzTarPerm modified mode [ 'test/math/atanh/shim.js', 420, 436 ]
42045 silly gunzTarPerm extractEntry test/math/cbrt/implement.js
42046 silly gunzTarPerm modified mode [ 'test/math/cbrt/implement.js', 420, 436 ]
42047 silly gunzTarPerm extractEntry test/math/cbrt/index.js
42048 silly gunzTarPerm modified mode [ 'test/math/cbrt/index.js', 420, 436 ]
42049 silly gunzTarPerm extractEntry test/math/cbrt/is-implemented.js
42050 silly gunzTarPerm modified mode [ 'test/math/cbrt/is-implemented.js', 420, 436 ]
42051 silly gunzTarPerm extractEntry test/math/cbrt/shim.js
42052 silly gunzTarPerm modified mode [ 'test/math/cbrt/shim.js', 420, 436 ]
42053 silly gunzTarPerm extractEntry test/math/clz32/implement.js
42054 silly gunzTarPerm modified mode [ 'test/math/clz32/implement.js', 420, 436 ]
42055 silly gunzTarPerm extractEntry test/math/clz32/index.js
42056 silly gunzTarPerm modified mode [ 'test/math/clz32/index.js', 420, 436 ]
42057 silly gunzTarPerm extractEntry test/math/clz32/is-implemented.js
42058 silly gunzTarPerm modified mode [ 'test/math/clz32/is-implemented.js', 420, 436 ]
42059 silly gunzTarPerm extractEntry test/math/clz32/shim.js
42060 silly gunzTarPerm modified mode [ 'test/math/clz32/shim.js', 420, 436 ]
42061 silly gunzTarPerm extractEntry test/math/cosh/implement.js
42062 silly gunzTarPerm modified mode [ 'test/math/cosh/implement.js', 420, 436 ]
42063 silly gunzTarPerm extractEntry test/math/cosh/index.js
42064 silly gunzTarPerm modified mode [ 'test/math/cosh/index.js', 420, 436 ]
42065 silly gunzTarPerm extractEntry test/math/cosh/is-implemented.js
42066 silly gunzTarPerm modified mode [ 'test/math/cosh/is-implemented.js', 420, 436 ]
42067 silly gunzTarPerm extractEntry test/math/cosh/shim.js
42068 silly gunzTarPerm modified mode [ 'test/math/cosh/shim.js', 420, 436 ]
42069 silly gunzTarPerm extractEntry test/math/expm1/implement.js
42070 silly gunzTarPerm modified mode [ 'test/math/expm1/implement.js', 420, 436 ]
42071 silly gunzTarPerm extractEntry test/math/expm1/index.js
42072 silly gunzTarPerm modified mode [ 'test/math/expm1/index.js', 420, 436 ]
42073 silly gunzTarPerm extractEntry test/math/expm1/is-implemented.js
42074 silly gunzTarPerm modified mode [ 'test/math/expm1/is-implemented.js', 420, 436 ]
42075 silly gunzTarPerm extractEntry test/math/expm1/shim.js
42076 silly gunzTarPerm modified mode [ 'test/math/expm1/shim.js', 420, 436 ]
42077 silly gunzTarPerm extractEntry test/math/trunc/implement.js
42078 silly gunzTarPerm modified mode [ 'test/math/trunc/implement.js', 420, 436 ]
42079 silly gunzTarPerm extractEntry test/math/trunc/index.js
42080 silly gunzTarPerm modified mode [ 'test/math/trunc/index.js', 420, 436 ]
42081 silly gunzTarPerm extractEntry test/math/trunc/is-implemented.js
42082 silly gunzTarPerm modified mode [ 'test/math/trunc/is-implemented.js', 420, 436 ]
42083 silly gunzTarPerm extractEntry test/math/trunc/shim.js
42084 silly gunzTarPerm modified mode [ 'test/math/trunc/shim.js', 420, 436 ]
42085 silly gunzTarPerm extractEntry test/math/hypot/implement.js
42086 silly gunzTarPerm modified mode [ 'test/math/hypot/implement.js', 420, 436 ]
42087 silly gunzTarPerm extractEntry test/math/hypot/index.js
42088 silly gunzTarPerm modified mode [ 'test/math/hypot/index.js', 420, 436 ]
42089 silly gunzTarPerm extractEntry test/math/hypot/is-implemented.js
42090 silly gunzTarPerm modified mode [ 'test/math/hypot/is-implemented.js', 420, 436 ]
42091 silly gunzTarPerm extractEntry test/math/hypot/shim.js
42092 silly gunzTarPerm modified mode [ 'test/math/hypot/shim.js', 420, 436 ]
42093 silly gunzTarPerm extractEntry test/math/imul/implement.js
42094 silly gunzTarPerm modified mode [ 'test/math/imul/implement.js', 420, 436 ]
42095 silly gunzTarPerm extractEntry test/math/imul/index.js
42096 silly gunzTarPerm modified mode [ 'test/math/imul/index.js', 420, 436 ]
42097 silly gunzTarPerm extractEntry test/math/imul/is-implemented.js
42098 silly gunzTarPerm modified mode [ 'test/math/imul/is-implemented.js', 420, 436 ]
42099 silly gunzTarPerm extractEntry test/math/imul/shim.js
42100 silly gunzTarPerm modified mode [ 'test/math/imul/shim.js', 420, 436 ]
42101 silly gunzTarPerm extractEntry test/math/log10/implement.js
42102 silly gunzTarPerm modified mode [ 'test/math/log10/implement.js', 420, 436 ]
42103 silly gunzTarPerm extractEntry test/math/log10/index.js
42104 silly gunzTarPerm modified mode [ 'test/math/log10/index.js', 420, 436 ]
42105 silly gunzTarPerm extractEntry test/math/log10/is-implemented.js
42106 silly gunzTarPerm modified mode [ 'test/math/log10/is-implemented.js', 420, 436 ]
42107 silly gunzTarPerm extractEntry test/math/log10/shim.js
42108 silly gunzTarPerm modified mode [ 'test/math/log10/shim.js', 420, 436 ]
42109 silly gunzTarPerm extractEntry test/math/log1p/implement.js
42110 silly gunzTarPerm modified mode [ 'test/math/log1p/implement.js', 420, 436 ]
42111 silly gunzTarPerm extractEntry test/math/log1p/index.js
42112 silly gunzTarPerm modified mode [ 'test/math/log1p/index.js', 420, 436 ]
42113 silly gunzTarPerm extractEntry test/math/log1p/is-implemented.js
42114 silly gunzTarPerm modified mode [ 'test/math/log1p/is-implemented.js', 420, 436 ]
42115 silly gunzTarPerm extractEntry test/math/log1p/shim.js
42116 silly gunzTarPerm modified mode [ 'test/math/log1p/shim.js', 420, 436 ]
42117 silly gunzTarPerm extractEntry test/math/log2/implement.js
42118 silly gunzTarPerm modified mode [ 'test/math/log2/implement.js', 420, 436 ]
42119 silly gunzTarPerm extractEntry test/math/log2/index.js
42120 silly gunzTarPerm modified mode [ 'test/math/log2/index.js', 420, 436 ]
42121 silly gunzTarPerm extractEntry test/math/log2/is-implemented.js
42122 silly gunzTarPerm modified mode [ 'test/math/log2/is-implemented.js', 420, 436 ]
42123 silly gunzTarPerm extractEntry test/math/log2/shim.js
42124 silly gunzTarPerm modified mode [ 'test/math/log2/shim.js', 420, 436 ]
42125 silly gunzTarPerm extractEntry test/math/sign/implement.js
42126 silly gunzTarPerm modified mode [ 'test/math/sign/implement.js', 420, 436 ]
42127 silly gunzTarPerm extractEntry test/math/sign/index.js
42128 silly gunzTarPerm modified mode [ 'test/math/sign/index.js', 420, 436 ]
42129 silly gunzTarPerm extractEntry test/math/sign/is-implemented.js
42130 silly gunzTarPerm modified mode [ 'test/math/sign/is-implemented.js', 420, 436 ]
42131 silly gunzTarPerm extractEntry test/math/sign/shim.js
42132 silly gunzTarPerm modified mode [ 'test/math/sign/shim.js', 420, 436 ]
42133 silly gunzTarPerm extractEntry test/math/sinh/implement.js
42134 silly gunzTarPerm modified mode [ 'test/math/sinh/implement.js', 420, 436 ]
42135 silly gunzTarPerm extractEntry test/math/sinh/index.js
42136 silly gunzTarPerm modified mode [ 'test/math/sinh/index.js', 420, 436 ]
42137 silly gunzTarPerm extractEntry test/math/sinh/is-implemented.js
42138 silly gunzTarPerm modified mode [ 'test/math/sinh/is-implemented.js', 420, 436 ]
42139 silly gunzTarPerm extractEntry test/math/sinh/shim.js
42140 silly gunzTarPerm modified mode [ 'test/math/sinh/shim.js', 420, 436 ]
42141 silly gunzTarPerm extractEntry test/math/tanh/implement.js
42142 silly gunzTarPerm modified mode [ 'test/math/tanh/implement.js', 420, 436 ]
42143 silly gunzTarPerm extractEntry test/math/tanh/index.js
42144 silly gunzTarPerm modified mode [ 'test/math/tanh/index.js', 420, 436 ]
42145 silly gunzTarPerm extractEntry test/math/tanh/is-implemented.js
42146 silly gunzTarPerm modified mode [ 'test/math/tanh/is-implemented.js', 420, 436 ]
42147 silly gunzTarPerm extractEntry test/math/tanh/shim.js
42148 silly gunzTarPerm modified mode [ 'test/math/tanh/shim.js', 420, 436 ]
42149 silly gunzTarPerm extractEntry test/math/fround/implement.js
42150 silly gunzTarPerm modified mode [ 'test/math/fround/implement.js', 420, 436 ]
42151 silly gunzTarPerm extractEntry test/math/fround/index.js
42152 silly gunzTarPerm modified mode [ 'test/math/fround/index.js', 420, 436 ]
42153 silly gunzTarPerm extractEntry test/math/fround/is-implemented.js
42154 silly gunzTarPerm modified mode [ 'test/math/fround/is-implemented.js', 420, 436 ]
42155 silly gunzTarPerm extractEntry test/math/fround/shim.js
42156 silly gunzTarPerm modified mode [ 'test/math/fround/shim.js', 420, 436 ]
42157 silly gunzTarPerm extractEntry test/number/to-uint32.js
42158 silly gunzTarPerm modified mode [ 'test/number/to-uint32.js', 420, 436 ]
42159 silly gunzTarPerm extractEntry test/number/is-number.js
42160 silly gunzTarPerm modified mode [ 'test/number/is-number.js', 420, 436 ]
42161 silly gunzTarPerm extractEntry test/number/to-integer.js
42162 silly gunzTarPerm modified mode [ 'test/number/to-integer.js', 420, 436 ]
42163 silly gunzTarPerm extractEntry test/number/to-pos-integer.js
42164 silly gunzTarPerm modified mode [ 'test/number/to-pos-integer.js', 420, 436 ]
42165 silly gunzTarPerm extractEntry test/number/is-nan/implement.js
42166 silly gunzTarPerm modified mode [ 'test/number/is-nan/implement.js', 420, 436 ]
42167 silly gunzTarPerm extractEntry test/number/is-nan/index.js
42168 silly gunzTarPerm modified mode [ 'test/number/is-nan/index.js', 420, 436 ]
42169 silly gunzTarPerm extractEntry test/number/is-nan/is-implemented.js
42170 silly gunzTarPerm modified mode [ 'test/number/is-nan/is-implemented.js', 420, 436 ]
42171 silly gunzTarPerm extractEntry test/number/is-nan/shim.js
42172 silly gunzTarPerm modified mode [ 'test/number/is-nan/shim.js', 420, 436 ]
42173 silly gunzTarPerm extractEntry test/number/#/pad.js
42174 silly gunzTarPerm modified mode [ 'test/number/#/pad.js', 420, 436 ]
42175 silly gunzTarPerm extractEntry test/number/epsilon/implement.js
42176 silly gunzTarPerm modified mode [ 'test/number/epsilon/implement.js', 420, 436 ]
42177 silly gunzTarPerm extractEntry test/number/epsilon/index.js
42178 silly gunzTarPerm modified mode [ 'test/number/epsilon/index.js', 420, 436 ]
42179 silly gunzTarPerm extractEntry test/number/epsilon/is-implemented.js
42180 silly gunzTarPerm modified mode [ 'test/number/epsilon/is-implemented.js', 420, 436 ]
42181 silly gunzTarPerm extractEntry test/number/max-safe-integer/implement.js
42182 silly gunzTarPerm modified mode [ 'test/number/max-safe-integer/implement.js', 420, 436 ]
42183 silly gunzTarPerm extractEntry test/number/max-safe-integer/index.js
42184 silly gunzTarPerm modified mode [ 'test/number/max-safe-integer/index.js', 420, 436 ]
42185 silly gunzTarPerm extractEntry test/number/max-safe-integer/is-implemented.js
42186 silly gunzTarPerm modified mode [ 'test/number/max-safe-integer/is-implemented.js', 420, 436 ]
42187 silly gunzTarPerm extractEntry test/number/min-safe-integer/implement.js
42188 silly gunzTarPerm modified mode [ 'test/number/min-safe-integer/implement.js', 420, 436 ]
42189 silly gunzTarPerm extractEntry test/number/min-safe-integer/index.js
42190 silly gunzTarPerm modified mode [ 'test/number/min-safe-integer/index.js', 420, 436 ]
42191 silly gunzTarPerm extractEntry test/number/min-safe-integer/is-implemented.js
42192 silly gunzTarPerm modified mode [ 'test/number/min-safe-integer/is-implemented.js', 420, 436 ]
42193 silly gunzTarPerm extractEntry test/number/is-finite/implement.js
42194 silly gunzTarPerm modified mode [ 'test/number/is-finite/implement.js', 420, 436 ]
42195 silly gunzTarPerm extractEntry test/number/is-finite/index.js
42196 silly gunzTarPerm modified mode [ 'test/number/is-finite/index.js', 420, 436 ]
42197 silly gunzTarPerm extractEntry test/number/is-finite/is-implemented.js
42198 silly gunzTarPerm modified mode [ 'test/number/is-finite/is-implemented.js', 420, 436 ]
42199 silly gunzTarPerm extractEntry test/number/is-finite/shim.js
42200 silly gunzTarPerm modified mode [ 'test/number/is-finite/shim.js', 420, 436 ]
42201 silly gunzTarPerm extractEntry test/number/is-integer/implement.js
42202 silly gunzTarPerm modified mode [ 'test/number/is-integer/implement.js', 420, 436 ]
42203 silly gunzTarPerm extractEntry test/number/is-integer/index.js
42204 silly gunzTarPerm modified mode [ 'test/number/is-integer/index.js', 420, 436 ]
42205 silly gunzTarPerm extractEntry test/number/is-integer/is-implemented.js
42206 silly gunzTarPerm modified mode [ 'test/number/is-integer/is-implemented.js', 420, 436 ]
42207 silly gunzTarPerm extractEntry test/number/is-integer/shim.js
42208 silly gunzTarPerm modified mode [ 'test/number/is-integer/shim.js', 420, 436 ]
42209 silly gunzTarPerm extractEntry test/number/is-safe-integer/implement.js
42210 silly gunzTarPerm modified mode [ 'test/number/is-safe-integer/implement.js', 420, 436 ]
42211 silly gunzTarPerm extractEntry test/number/is-safe-integer/index.js
42212 silly gunzTarPerm modified mode [ 'test/number/is-safe-integer/index.js', 420, 436 ]
42213 silly gunzTarPerm extractEntry test/number/is-safe-integer/is-implemented.js
42214 silly gunzTarPerm modified mode [ 'test/number/is-safe-integer/is-implemented.js', 420, 436 ]
42215 silly gunzTarPerm extractEntry test/number/is-safe-integer/shim.js
42216 silly gunzTarPerm modified mode [ 'test/number/is-safe-integer/shim.js', 420, 436 ]
42217 silly gunzTarPerm extractEntry test/object/_iterate.js
42218 silly gunzTarPerm modified mode [ 'test/object/_iterate.js', 420, 436 ]
42219 silly gunzTarPerm extractEntry test/object/is-callable.js
42220 silly gunzTarPerm modified mode [ 'test/object/is-callable.js', 420, 436 ]
42221 silly gunzTarPerm extractEntry test/object/is-copy-deep.js
42222 silly gunzTarPerm modified mode [ 'test/object/is-copy-deep.js', 420, 436 ]
42223 silly gunzTarPerm extractEntry test/object/is-copy.js
42224 silly gunzTarPerm modified mode [ 'test/object/is-copy.js', 420, 436 ]
42225 silly gunzTarPerm extractEntry test/object/is-empty.js
42226 silly gunzTarPerm modified mode [ 'test/object/is-empty.js', 420, 436 ]
42227 silly gunzTarPerm extractEntry test/object/is-array-like.js
42228 silly gunzTarPerm modified mode [ 'test/object/is-array-like.js', 420, 436 ]
42229 silly gunzTarPerm extractEntry test/object/validate-stringifiable-value.js
42230 silly gunzTarPerm modified mode [ 'test/object/validate-stringifiable-value.js', 420, 436 ]
42231 silly gunzTarPerm extractEntry test/object/is.js
42232 silly gunzTarPerm modified mode [ 'test/object/is.js', 420, 436 ]
42233 silly gunzTarPerm extractEntry test/object/key-of.js
42234 silly gunzTarPerm modified mode [ 'test/object/key-of.js', 420, 436 ]
42235 silly gunzTarPerm extractEntry test/object/validate-array-like.js
42236 silly gunzTarPerm modified mode [ 'test/object/validate-array-like.js', 420, 436 ]
42237 silly gunzTarPerm extractEntry test/object/map-keys.js
42238 silly gunzTarPerm modified mode [ 'test/object/map-keys.js', 420, 436 ]
42239 silly gunzTarPerm extractEntry test/object/get-property-names.js
42240 silly gunzTarPerm modified mode [ 'test/object/get-property-names.js', 420, 436 ]
42241 silly gunzTarPerm extractEntry test/object/map.js
42242 silly gunzTarPerm modified mode [ 'test/object/map.js', 420, 436 ]
42243 silly gunzTarPerm extractEntry test/object/for-each.js
42244 silly gunzTarPerm modified mode [ 'test/object/for-each.js', 420, 436 ]
42245 silly gunzTarPerm extractEntry test/object/mixin-prototypes.js
42246 silly gunzTarPerm modified mode [ 'test/object/mixin-prototypes.js', 420, 436 ]
42247 silly gunzTarPerm extractEntry test/object/flatten.js
42248 silly gunzTarPerm modified mode [ 'test/object/flatten.js', 420, 436 ]
42249 silly gunzTarPerm extractEntry test/object/mixin.js
42250 silly gunzTarPerm modified mode [ 'test/object/mixin.js', 420, 436 ]
42251 silly gunzTarPerm extractEntry test/object/first-key.js
42252 silly gunzTarPerm modified mode [ 'test/object/first-key.js', 420, 436 ]
42253 silly gunzTarPerm extractEntry test/object/normalize-options.js
42254 silly gunzTarPerm modified mode [ 'test/object/normalize-options.js', 420, 436 ]
42255 silly gunzTarPerm extractEntry test/object/filter.js
42256 silly gunzTarPerm modified mode [ 'test/object/filter.js', 420, 436 ]
42257 silly gunzTarPerm extractEntry test/object/primitive-set.js
42258 silly gunzTarPerm modified mode [ 'test/object/primitive-set.js', 420, 436 ]
42259 silly gunzTarPerm extractEntry test/object/every.js
42260 silly gunzTarPerm modified mode [ 'test/object/every.js', 420, 436 ]
42261 silly gunzTarPerm extractEntry test/object/safe-traverse.js
42262 silly gunzTarPerm modified mode [ 'test/object/safe-traverse.js', 420, 436 ]
42263 silly gunzTarPerm extractEntry test/object/eq.js
42264 silly gunzTarPerm modified mode [ 'test/object/eq.js', 420, 436 ]
42265 silly gunzTarPerm extractEntry test/object/serialize.js
42266 silly gunzTarPerm modified mode [ 'test/object/serialize.js', 420, 436 ]
42267 silly gunzTarPerm extractEntry test/object/create.js
42268 silly gunzTarPerm modified mode [ 'test/object/create.js', 420, 436 ]
42269 silly gunzTarPerm extractEntry test/object/validate-array-like-object.js
42270 silly gunzTarPerm modified mode [ 'test/object/validate-array-like-object.js', 420, 436 ]
42271 silly gunzTarPerm extractEntry test/object/count.js
42272 silly gunzTarPerm modified mode [ 'test/object/count.js', 420, 436 ]
42273 silly gunzTarPerm extractEntry test/object/some.js
42274 silly gunzTarPerm modified mode [ 'test/object/some.js', 420, 436 ]
42275 silly gunzTarPerm extractEntry test/object/copy.js
42276 silly gunzTarPerm modified mode [ 'test/object/copy.js', 420, 436 ]
42277 silly gunzTarPerm extractEntry test/object/to-array.js
42278 silly gunzTarPerm modified mode [ 'test/object/to-array.js', 420, 436 ]
42279 silly gunzTarPerm extractEntry test/object/copy-deep.js
42280 silly gunzTarPerm modified mode [ 'test/object/copy-deep.js', 420, 436 ]
42281 silly gunzTarPerm extractEntry test/object/unserialize.js
42282 silly gunzTarPerm modified mode [ 'test/object/unserialize.js', 420, 436 ]
42283 silly gunzTarPerm extractEntry test/object/compare.js
42284 silly gunzTarPerm modified mode [ 'test/object/compare.js', 420, 436 ]
42285 silly gunzTarPerm extractEntry test/object/valid-callable.js
42286 silly gunzTarPerm modified mode [ 'test/object/valid-callable.js', 420, 436 ]
42287 silly gunzTarPerm extractEntry test/object/compact.js
42288 silly gunzTarPerm modified mode [ 'test/object/compact.js', 420, 436 ]
42289 silly gunzTarPerm extractEntry test/object/valid-object.js
42290 silly gunzTarPerm modified mode [ 'test/object/valid-object.js', 420, 436 ]
42291 silly gunzTarPerm extractEntry test/object/clear.js
42292 silly gunzTarPerm modified mode [ 'test/object/clear.js', 420, 436 ]
42293 silly gunzTarPerm extractEntry test/object/valid-value.js
42294 silly gunzTarPerm modified mode [ 'test/object/valid-value.js', 420, 436 ]
42295 silly gunzTarPerm extractEntry test/object/is-object.js
42296 silly gunzTarPerm modified mode [ 'test/object/is-object.js', 420, 436 ]
42297 silly gunzTarPerm extractEntry test/object/validate-stringifiable.js
42298 silly gunzTarPerm modified mode [ 'test/object/validate-stringifiable.js', 420, 436 ]
42299 silly gunzTarPerm extractEntry test/object/is-plain-object.js
42300 silly gunzTarPerm modified mode [ 'test/object/is-plain-object.js', 420, 436 ]
42301 silly gunzTarPerm extractEntry test/object/set-prototype-of/implement.js
42302 silly gunzTarPerm modified mode [ 'test/object/set-prototype-of/implement.js', 420, 436 ]
42303 silly gunzTarPerm extractEntry test/object/set-prototype-of/index.js
42304 silly gunzTarPerm modified mode [ 'test/object/set-prototype-of/index.js', 420, 436 ]
42305 silly gunzTarPerm extractEntry test/object/set-prototype-of/is-implemented.js
42306 silly gunzTarPerm modified mode [ 'test/object/set-prototype-of/is-implemented.js', 420, 436 ]
42307 silly gunzTarPerm extractEntry test/object/set-prototype-of/shim.js
42308 silly gunzTarPerm modified mode [ 'test/object/set-prototype-of/shim.js', 420, 436 ]
42309 silly gunzTarPerm extractEntry test/object/keys/implement.js
42310 silly gunzTarPerm modified mode [ 'test/object/keys/implement.js', 420, 436 ]
42311 silly gunzTarPerm extractEntry test/object/keys/index.js
42312 silly gunzTarPerm modified mode [ 'test/object/keys/index.js', 420, 436 ]
42313 silly gunzTarPerm extractEntry test/object/keys/is-implemented.js
42314 silly gunzTarPerm modified mode [ 'test/object/keys/is-implemented.js', 420, 436 ]
42315 silly gunzTarPerm extractEntry test/object/keys/shim.js
42316 silly gunzTarPerm modified mode [ 'test/object/keys/shim.js', 420, 436 ]
42317 silly gunzTarPerm extractEntry test/object/assign/implement.js
42318 silly gunzTarPerm modified mode [ 'test/object/assign/implement.js', 420, 436 ]
42319 silly gunzTarPerm extractEntry test/object/assign/index.js
42320 silly gunzTarPerm modified mode [ 'test/object/assign/index.js', 420, 436 ]
42321 silly gunzTarPerm extractEntry test/object/assign/is-implemented.js
42322 silly gunzTarPerm modified mode [ 'test/object/assign/is-implemented.js', 420, 436 ]
42323 silly gunzTarPerm extractEntry test/object/assign/shim.js
42324 silly gunzTarPerm modified mode [ 'test/object/assign/shim.js', 420, 436 ]
42325 silly gunzTarPerm extractEntry test/reg-exp/escape.js
42326 silly gunzTarPerm modified mode [ 'test/reg-exp/escape.js', 420, 436 ]
42327 silly gunzTarPerm extractEntry test/reg-exp/is-reg-exp.js
42328 silly gunzTarPerm modified mode [ 'test/reg-exp/is-reg-exp.js', 420, 436 ]
42329 silly gunzTarPerm extractEntry test/reg-exp/valid-reg-exp.js
42330 silly gunzTarPerm modified mode [ 'test/reg-exp/valid-reg-exp.js', 420, 436 ]
42331 silly gunzTarPerm extractEntry test/reg-exp/#/index.js
42332 silly gunzTarPerm modified mode [ 'test/reg-exp/#/index.js', 420, 436 ]
42333 silly gunzTarPerm extractEntry test/reg-exp/#/is-sticky.js
42334 silly gunzTarPerm modified mode [ 'test/reg-exp/#/is-sticky.js', 420, 436 ]
42335 silly gunzTarPerm extractEntry test/reg-exp/#/is-unicode.js
42336 silly gunzTarPerm modified mode [ 'test/reg-exp/#/is-unicode.js', 420, 436 ]
42337 silly gunzTarPerm extractEntry test/reg-exp/#/match/implement.js
42338 silly gunzTarPerm modified mode [ 'test/reg-exp/#/match/implement.js', 420, 436 ]
42339 silly gunzTarPerm extractEntry test/reg-exp/#/match/index.js
42340 silly gunzTarPerm modified mode [ 'test/reg-exp/#/match/index.js', 420, 436 ]
42341 silly gunzTarPerm extractEntry test/reg-exp/#/match/is-implemented.js
42342 silly gunzTarPerm modified mode [ 'test/reg-exp/#/match/is-implemented.js', 420, 436 ]
42343 silly gunzTarPerm extractEntry test/reg-exp/#/match/shim.js
42344 silly gunzTarPerm modified mode [ 'test/reg-exp/#/match/shim.js', 420, 436 ]
42345 silly gunzTarPerm extractEntry test/reg-exp/#/replace/implement.js
42346 silly gunzTarPerm modified mode [ 'test/reg-exp/#/replace/implement.js', 420, 436 ]
42347 silly gunzTarPerm extractEntry test/reg-exp/#/replace/index.js
42348 silly gunzTarPerm modified mode [ 'test/reg-exp/#/replace/index.js', 420, 436 ]
42349 silly gunzTarPerm extractEntry test/reg-exp/#/replace/is-implemented.js
42350 silly gunzTarPerm modified mode [ 'test/reg-exp/#/replace/is-implemented.js', 420, 436 ]
42351 silly gunzTarPerm extractEntry test/reg-exp/#/replace/shim.js
42352 silly gunzTarPerm modified mode [ 'test/reg-exp/#/replace/shim.js', 420, 436 ]
42353 silly gunzTarPerm extractEntry test/reg-exp/#/search/implement.js
42354 silly gunzTarPerm modified mode [ 'test/reg-exp/#/search/implement.js', 420, 436 ]
42355 silly gunzTarPerm extractEntry test/reg-exp/#/search/index.js
42356 silly gunzTarPerm modified mode [ 'test/reg-exp/#/search/index.js', 420, 436 ]
42357 silly gunzTarPerm extractEntry test/reg-exp/#/search/is-implemented.js
42358 silly gunzTarPerm modified mode [ 'test/reg-exp/#/search/is-implemented.js', 420, 436 ]
42359 silly gunzTarPerm extractEntry test/reg-exp/#/search/shim.js
42360 silly gunzTarPerm modified mode [ 'test/reg-exp/#/search/shim.js', 420, 436 ]
42361 silly gunzTarPerm extractEntry test/reg-exp/#/split/implement.js
42362 silly gunzTarPerm modified mode [ 'test/reg-exp/#/split/implement.js', 420, 436 ]
42363 silly gunzTarPerm extractEntry test/reg-exp/#/split/index.js
42364 silly gunzTarPerm modified mode [ 'test/reg-exp/#/split/index.js', 420, 436 ]
42365 silly gunzTarPerm extractEntry test/reg-exp/#/split/is-implemented.js
42366 silly gunzTarPerm modified mode [ 'test/reg-exp/#/split/is-implemented.js', 420, 436 ]
42367 silly gunzTarPerm extractEntry test/reg-exp/#/split/shim.js
42368 silly gunzTarPerm modified mode [ 'test/reg-exp/#/split/shim.js', 420, 436 ]
42369 silly gunzTarPerm extractEntry test/reg-exp/#/sticky/implement.js
42370 silly gunzTarPerm modified mode [ 'test/reg-exp/#/sticky/implement.js', 420, 436 ]
42371 silly gunzTarPerm extractEntry test/reg-exp/#/sticky/is-implemented.js
42372 silly gunzTarPerm modified mode [ 'test/reg-exp/#/sticky/is-implemented.js', 420, 436 ]
42373 silly gunzTarPerm extractEntry test/reg-exp/#/unicode/implement.js
42374 silly gunzTarPerm modified mode [ 'test/reg-exp/#/unicode/implement.js', 420, 436 ]
42375 silly gunzTarPerm extractEntry test/reg-exp/#/unicode/is-implemented.js
42376 silly gunzTarPerm modified mode [ 'test/reg-exp/#/unicode/is-implemented.js', 420, 436 ]
42377 silly gunzTarPerm extractEntry test/string/format-method.js
42378 silly gunzTarPerm modified mode [ 'test/string/format-method.js', 420, 436 ]
42379 silly gunzTarPerm extractEntry test/string/is-string.js
42380 silly gunzTarPerm modified mode [ 'test/string/is-string.js', 420, 436 ]
42381 silly gunzTarPerm extractEntry test/string/random-uniq.js
42382 silly gunzTarPerm modified mode [ 'test/string/random-uniq.js', 420, 436 ]
42383 silly gunzTarPerm extractEntry test/string/#/hyphen-to-camel.js
42384 silly gunzTarPerm modified mode [ 'test/string/#/hyphen-to-camel.js', 420, 436 ]
42385 silly gunzTarPerm extractEntry test/string/#/camel-to-hyphen.js
42386 silly gunzTarPerm modified mode [ 'test/string/#/camel-to-hyphen.js', 420, 436 ]
42387 silly gunzTarPerm extractEntry test/string/#/capitalize.js
42388 silly gunzTarPerm modified mode [ 'test/string/#/capitalize.js', 420, 436 ]
42389 silly gunzTarPerm extractEntry test/string/#/case-insensitive-compare.js
42390 silly gunzTarPerm modified mode [ 'test/string/#/case-insensitive-compare.js', 420, 436 ]
42391 silly gunzTarPerm extractEntry test/string/#/at.js
42392 silly gunzTarPerm modified mode [ 'test/string/#/at.js', 420, 436 ]
42393 silly gunzTarPerm extractEntry test/string/#/indent.js
42394 silly gunzTarPerm modified mode [ 'test/string/#/indent.js', 420, 436 ]
42395 silly gunzTarPerm extractEntry test/string/#/last.js
42396 silly gunzTarPerm modified mode [ 'test/string/#/last.js', 420, 436 ]
42397 silly gunzTarPerm extractEntry test/string/#/pad.js
42398 silly gunzTarPerm modified mode [ 'test/string/#/pad.js', 420, 436 ]
42399 silly gunzTarPerm extractEntry test/string/#/plain-replace-all.js
42400 silly gunzTarPerm modified mode [ 'test/string/#/plain-replace-all.js', 420, 436 ]
42401 silly gunzTarPerm extractEntry test/string/#/plain-replace.js
42402 silly gunzTarPerm modified mode [ 'test/string/#/plain-replace.js', 420, 436 ]
42403 silly gunzTarPerm extractEntry test/string/#/contains/implement.js
42404 silly gunzTarPerm modified mode [ 'test/string/#/contains/implement.js', 420, 436 ]
42405 silly gunzTarPerm extractEntry test/string/#/contains/index.js
42406 silly gunzTarPerm modified mode [ 'test/string/#/contains/index.js', 420, 436 ]
42407 silly gunzTarPerm extractEntry test/string/#/contains/is-implemented.js
42408 silly gunzTarPerm modified mode [ 'test/string/#/contains/is-implemented.js', 420, 436 ]
42409 silly gunzTarPerm extractEntry test/string/#/contains/shim.js
42410 silly gunzTarPerm modified mode [ 'test/string/#/contains/shim.js', 420, 436 ]
42411 silly gunzTarPerm extractEntry test/string/#/normalize/_data.js
42412 silly gunzTarPerm modified mode [ 'test/string/#/normalize/_data.js', 420, 436 ]
42413 silly gunzTarPerm extractEntry test/string/#/normalize/implement.js
42414 silly gunzTarPerm modified mode [ 'test/string/#/normalize/implement.js', 420, 436 ]
42415 silly gunzTarPerm extractEntry test/string/#/normalize/index.js
42416 silly gunzTarPerm modified mode [ 'test/string/#/normalize/index.js', 420, 436 ]
42417 silly gunzTarPerm extractEntry test/string/#/normalize/is-implemented.js
42418 silly gunzTarPerm modified mode [ 'test/string/#/normalize/is-implemented.js', 420, 436 ]
42419 silly gunzTarPerm extractEntry test/string/#/normalize/shim.js
42420 silly gunzTarPerm modified mode [ 'test/string/#/normalize/shim.js', 420, 436 ]
42421 silly gunzTarPerm extractEntry test/string/#/ends-with/implement.js
42422 silly gunzTarPerm modified mode [ 'test/string/#/ends-with/implement.js', 420, 436 ]
42423 silly gunzTarPerm extractEntry test/string/#/ends-with/index.js
42424 silly gunzTarPerm modified mode [ 'test/string/#/ends-with/index.js', 420, 436 ]
42425 silly gunzTarPerm extractEntry test/string/#/ends-with/is-implemented.js
42426 silly gunzTarPerm modified mode [ 'test/string/#/ends-with/is-implemented.js', 420, 436 ]
42427 silly gunzTarPerm extractEntry test/string/#/ends-with/shim.js
42428 silly gunzTarPerm modified mode [ 'test/string/#/ends-with/shim.js', 420, 436 ]
42429 silly gunzTarPerm extractEntry test/string/#/@@iterator/implement.js
42430 silly gunzTarPerm modified mode [ 'test/string/#/@@iterator/implement.js', 420, 436 ]
42431 silly gunzTarPerm extractEntry test/string/#/@@iterator/index.js
42432 silly gunzTarPerm modified mode [ 'test/string/#/@@iterator/index.js', 420, 436 ]
42433 silly gunzTarPerm extractEntry test/string/#/@@iterator/is-implemented.js
42434 silly gunzTarPerm modified mode [ 'test/string/#/@@iterator/is-implemented.js', 420, 436 ]
42435 silly gunzTarPerm extractEntry test/string/#/@@iterator/shim.js
42436 silly gunzTarPerm modified mode [ 'test/string/#/@@iterator/shim.js', 420, 436 ]
42437 silly gunzTarPerm extractEntry test/string/#/code-point-at/implement.js
42438 silly gunzTarPerm modified mode [ 'test/string/#/code-point-at/implement.js', 420, 436 ]
42439 silly gunzTarPerm extractEntry test/string/#/code-point-at/index.js
42440 silly gunzTarPerm modified mode [ 'test/string/#/code-point-at/index.js', 420, 436 ]
42441 silly gunzTarPerm extractEntry test/string/#/code-point-at/is-implemented.js
42442 silly gunzTarPerm modified mode [ 'test/string/#/code-point-at/is-implemented.js', 420, 436 ]
42443 silly gunzTarPerm extractEntry test/string/#/code-point-at/shim.js
42444 silly gunzTarPerm modified mode [ 'test/string/#/code-point-at/shim.js', 420, 436 ]
42445 silly gunzTarPerm extractEntry test/string/#/repeat/implement.js
42446 silly gunzTarPerm modified mode [ 'test/string/#/repeat/implement.js', 420, 436 ]
42447 silly gunzTarPerm extractEntry test/string/#/repeat/index.js
42448 silly gunzTarPerm modified mode [ 'test/string/#/repeat/index.js', 420, 436 ]
42449 silly gunzTarPerm extractEntry test/string/#/repeat/is-implemented.js
42450 silly gunzTarPerm modified mode [ 'test/string/#/repeat/is-implemented.js', 420, 436 ]
42451 silly gunzTarPerm extractEntry test/string/#/repeat/shim.js
42452 silly gunzTarPerm modified mode [ 'test/string/#/repeat/shim.js', 420, 436 ]
42453 silly gunzTarPerm extractEntry test/string/#/starts-with/implement.js
42454 silly gunzTarPerm modified mode [ 'test/string/#/starts-with/implement.js', 420, 436 ]
42455 silly gunzTarPerm extractEntry test/string/#/starts-with/index.js
42456 silly gunzTarPerm modified mode [ 'test/string/#/starts-with/index.js', 420, 436 ]
42457 silly gunzTarPerm extractEntry test/string/#/starts-with/is-implemented.js
42458 silly gunzTarPerm modified mode [ 'test/string/#/starts-with/is-implemented.js', 420, 436 ]
42459 silly gunzTarPerm extractEntry test/string/#/starts-with/shim.js
42460 silly gunzTarPerm modified mode [ 'test/string/#/starts-with/shim.js', 420, 436 ]
42461 silly gunzTarPerm extractEntry test/string/from-code-point/implement.js
42462 silly gunzTarPerm modified mode [ 'test/string/from-code-point/implement.js', 420, 436 ]
42463 silly gunzTarPerm extractEntry test/string/from-code-point/index.js
42464 silly gunzTarPerm modified mode [ 'test/string/from-code-point/index.js', 420, 436 ]
42465 silly gunzTarPerm extractEntry test/string/from-code-point/is-implemented.js
42466 silly gunzTarPerm modified mode [ 'test/string/from-code-point/is-implemented.js', 420, 436 ]
42467 silly gunzTarPerm extractEntry test/string/from-code-point/shim.js
42468 silly gunzTarPerm modified mode [ 'test/string/from-code-point/shim.js', 420, 436 ]
42469 silly gunzTarPerm extractEntry test/string/raw/implement.js
42470 silly gunzTarPerm modified mode [ 'test/string/raw/implement.js', 420, 436 ]
42471 silly gunzTarPerm extractEntry test/string/raw/index.js
42472 silly gunzTarPerm modified mode [ 'test/string/raw/index.js', 420, 436 ]
42473 silly gunzTarPerm extractEntry test/string/raw/is-implemented.js
42474 silly gunzTarPerm modified mode [ 'test/string/raw/is-implemented.js', 420, 436 ]
42475 silly gunzTarPerm extractEntry test/string/raw/shim.js
42476 silly gunzTarPerm modified mode [ 'test/string/raw/shim.js', 420, 436 ]
42477 silly gunzTarPerm extractEntry reg-exp/escape.js
42478 silly gunzTarPerm modified mode [ 'reg-exp/escape.js', 420, 436 ]
42479 silly gunzTarPerm extractEntry reg-exp/index.js
42480 silly gunzTarPerm modified mode [ 'reg-exp/index.js', 420, 436 ]
42481 silly gunzTarPerm extractEntry reg-exp/is-reg-exp.js
42482 silly gunzTarPerm modified mode [ 'reg-exp/is-reg-exp.js', 420, 436 ]
42483 silly gunzTarPerm extractEntry reg-exp/valid-reg-exp.js
42484 silly gunzTarPerm modified mode [ 'reg-exp/valid-reg-exp.js', 420, 436 ]
42485 silly gunzTarPerm extractEntry reg-exp/#/index.js
42486 silly gunzTarPerm modified mode [ 'reg-exp/#/index.js', 420, 436 ]
42487 silly gunzTarPerm extractEntry reg-exp/#/is-sticky.js
42488 silly gunzTarPerm modified mode [ 'reg-exp/#/is-sticky.js', 420, 436 ]
42489 silly gunzTarPerm extractEntry reg-exp/#/is-unicode.js
42490 silly gunzTarPerm modified mode [ 'reg-exp/#/is-unicode.js', 420, 436 ]
42491 silly gunzTarPerm extractEntry reg-exp/#/match/implement.js
42492 silly gunzTarPerm modified mode [ 'reg-exp/#/match/implement.js', 420, 436 ]
42493 silly gunzTarPerm extractEntry reg-exp/#/match/index.js
42494 silly gunzTarPerm modified mode [ 'reg-exp/#/match/index.js', 420, 436 ]
42495 silly gunzTarPerm extractEntry reg-exp/#/match/is-implemented.js
42496 silly gunzTarPerm modified mode [ 'reg-exp/#/match/is-implemented.js', 420, 436 ]
42497 silly gunzTarPerm extractEntry reg-exp/#/match/shim.js
42498 silly gunzTarPerm modified mode [ 'reg-exp/#/match/shim.js', 420, 436 ]
42499 silly gunzTarPerm extractEntry reg-exp/#/replace/implement.js
42500 silly gunzTarPerm modified mode [ 'reg-exp/#/replace/implement.js', 420, 436 ]
42501 silly gunzTarPerm extractEntry reg-exp/#/replace/index.js
42502 silly gunzTarPerm modified mode [ 'reg-exp/#/replace/index.js', 420, 436 ]
42503 silly gunzTarPerm extractEntry reg-exp/#/replace/is-implemented.js
42504 silly gunzTarPerm modified mode [ 'reg-exp/#/replace/is-implemented.js', 420, 436 ]
42505 silly gunzTarPerm extractEntry reg-exp/#/replace/shim.js
42506 silly gunzTarPerm modified mode [ 'reg-exp/#/replace/shim.js', 420, 436 ]
42507 silly gunzTarPerm extractEntry reg-exp/#/search/implement.js
42508 silly gunzTarPerm modified mode [ 'reg-exp/#/search/implement.js', 420, 436 ]
42509 silly gunzTarPerm extractEntry reg-exp/#/search/index.js
42510 silly gunzTarPerm modified mode [ 'reg-exp/#/search/index.js', 420, 436 ]
42511 silly gunzTarPerm extractEntry reg-exp/#/search/is-implemented.js
42512 silly gunzTarPerm modified mode [ 'reg-exp/#/search/is-implemented.js', 420, 436 ]
42513 silly gunzTarPerm extractEntry reg-exp/#/search/shim.js
42514 silly gunzTarPerm modified mode [ 'reg-exp/#/search/shim.js', 420, 436 ]
42515 silly gunzTarPerm extractEntry reg-exp/#/split/implement.js
42516 silly gunzTarPerm modified mode [ 'reg-exp/#/split/implement.js', 420, 436 ]
42517 silly gunzTarPerm extractEntry reg-exp/#/split/index.js
42518 silly gunzTarPerm modified mode [ 'reg-exp/#/split/index.js', 420, 436 ]
42519 silly gunzTarPerm extractEntry reg-exp/#/split/is-implemented.js
42520 silly gunzTarPerm modified mode [ 'reg-exp/#/split/is-implemented.js', 420, 436 ]
42521 silly gunzTarPerm extractEntry reg-exp/#/split/shim.js
42522 silly gunzTarPerm modified mode [ 'reg-exp/#/split/shim.js', 420, 436 ]
42523 silly gunzTarPerm extractEntry reg-exp/#/sticky/implement.js
42524 silly gunzTarPerm modified mode [ 'reg-exp/#/sticky/implement.js', 420, 436 ]
42525 silly gunzTarPerm extractEntry reg-exp/#/sticky/is-implemented.js
42526 silly gunzTarPerm modified mode [ 'reg-exp/#/sticky/is-implemented.js', 420, 436 ]
42527 silly gunzTarPerm extractEntry reg-exp/#/unicode/implement.js
42528 silly gunzTarPerm modified mode [ 'reg-exp/#/unicode/implement.js', 420, 436 ]
42529 silly gunzTarPerm extractEntry reg-exp/#/unicode/is-implemented.js
42530 silly gunzTarPerm modified mode [ 'reg-exp/#/unicode/is-implemented.js', 420, 436 ]
42531 silly gunzTarPerm extractEntry function/valid-function.js
42532 silly gunzTarPerm modified mode [ 'function/valid-function.js', 420, 436 ]
42533 silly gunzTarPerm extractEntry function/constant.js
42534 silly gunzTarPerm modified mode [ 'function/constant.js', 420, 436 ]
42535 silly gunzTarPerm extractEntry function/identity.js
42536 silly gunzTarPerm modified mode [ 'function/identity.js', 420, 436 ]
42537 silly gunzTarPerm extractEntry function/index.js
42538 silly gunzTarPerm modified mode [ 'function/index.js', 420, 436 ]
42539 silly gunzTarPerm extractEntry function/_define-length.js
42540 silly gunzTarPerm modified mode [ 'function/_define-length.js', 420, 436 ]
42541 silly gunzTarPerm extractEntry function/is-arguments.js
42542 silly gunzTarPerm modified mode [ 'function/is-arguments.js', 420, 436 ]
42543 silly gunzTarPerm extractEntry function/is-function.js
42544 silly gunzTarPerm modified mode [ 'function/is-function.js', 420, 436 ]
42545 silly gunzTarPerm extractEntry function/noop.js
42546 silly gunzTarPerm modified mode [ 'function/noop.js', 420, 436 ]
42547 silly gunzTarPerm extractEntry function/pluck.js
42548 silly gunzTarPerm modified mode [ 'function/pluck.js', 420, 436 ]
42549 silly gunzTarPerm extractEntry function/invoke.js
42550 silly gunzTarPerm modified mode [ 'function/invoke.js', 420, 436 ]
42551 silly gunzTarPerm extractEntry function/#/compose.js
42552 silly gunzTarPerm modified mode [ 'function/#/compose.js', 420, 436 ]
42553 silly gunzTarPerm extractEntry function/#/copy.js
42554 silly gunzTarPerm modified mode [ 'function/#/copy.js', 420, 436 ]
42555 silly gunzTarPerm extractEntry function/#/curry.js
42556 silly gunzTarPerm modified mode [ 'function/#/curry.js', 420, 436 ]
42557 silly gunzTarPerm extractEntry function/#/index.js
42558 silly gunzTarPerm modified mode [ 'function/#/index.js', 420, 436 ]
42559 silly gunzTarPerm extractEntry function/#/lock.js
42560 silly gunzTarPerm modified mode [ 'function/#/lock.js', 420, 436 ]
42561 silly gunzTarPerm extractEntry function/#/not.js
42562 silly gunzTarPerm modified mode [ 'function/#/not.js', 420, 436 ]
42563 silly gunzTarPerm extractEntry function/#/partial.js
42564 silly gunzTarPerm modified mode [ 'function/#/partial.js', 420, 436 ]
42565 silly gunzTarPerm extractEntry function/#/spread.js
42566 silly gunzTarPerm modified mode [ 'function/#/spread.js', 420, 436 ]
42567 silly gunzTarPerm extractEntry function/#/to-string-tokens.js
42568 silly gunzTarPerm modified mode [ 'function/#/to-string-tokens.js', 420, 436 ]
42569 silly gunzTarPerm extractEntry example/array.js
42570 silly gunzTarPerm modified mode [ 'example/array.js', 420, 436 ]
42571 silly gunzTarPerm extractEntry test/async.js
42572 silly gunzTarPerm modified mode [ 'test/async.js', 420, 436 ]
42573 silly gunzTarPerm extractEntry src/core/joins/joinobserver.js
42574 silly gunzTarPerm modified mode [ 'src/core/joins/joinobserver.js', 438, 436 ]
42575 silly gunzTarPerm extractEntry src/core/joins/pattern.js
42576 silly gunzTarPerm modified mode [ 'src/core/joins/pattern.js', 438, 436 ]
42577 silly gunzTarPerm extractEntry test/for.js
42578 silly gunzTarPerm modified mode [ 'test/for.js', 420, 436 ]
42579 silly gunzTarPerm extractEntry test/parent.js
42580 silly gunzTarPerm modified mode [ 'test/parent.js', 420, 436 ]
42581 silly gunzTarPerm extractEntry src/core/joins/plan.js
42582 silly gunzTarPerm modified mode [ 'src/core/joins/plan.js', 438, 436 ]
42583 silly gunzTarPerm extractEntry ts/rx.binding.d.ts
42584 silly gunzTarPerm modified mode [ 'ts/rx.binding.d.ts', 438, 436 ]
42585 silly gunzTarPerm extractEntry test/array.js
42586 silly gunzTarPerm modified mode [ 'test/array.js', 420, 436 ]
42587 silly gunzTarPerm extractEntry .travis.yml
42588 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
42589 silly gunzTarPerm extractEntry ts/rx-lite.d.ts
42590 silly gunzTarPerm modified mode [ 'ts/rx-lite.d.ts', 438, 436 ]
42591 silly gunzTarPerm extractEntry ts/rx.all.d.ts
42592 silly gunzTarPerm modified mode [ 'ts/rx.all.d.ts', 438, 436 ]
42593 silly gunzTarPerm extractEntry README.markdown
42594 silly gunzTarPerm modified mode [ 'README.markdown', 420, 436 ]
42595 silly gunzTarPerm extractEntry ts/rx.async-lite.d.ts
42596 silly gunzTarPerm modified mode [ 'ts/rx.async-lite.d.ts', 438, 436 ]
42597 silly gunzTarPerm extractEntry ts/rx.async-tests.ts
42598 silly gunzTarPerm modified mode [ 'ts/rx.async-tests.ts', 438, 436 ]
42599 silly cache afterAdd entities@1.1.1
42600 verbose afterAdd /home/lukas/.npm/entities/1.1.1/package/package.json not in flight; writing
42601 silly gunzTarPerm extractEntry ts/rx.async.d.ts
42602 silly gunzTarPerm modified mode [ 'ts/rx.async.d.ts', 438, 436 ]
42603 silly gunzTarPerm extractEntry ts/rx.backpressure-lite.d.ts
42604 silly gunzTarPerm modified mode [ 'ts/rx.backpressure-lite.d.ts', 438, 436 ]
42605 verbose afterAdd /home/lukas/.npm/entities/1.1.1/package/package.json written
42606 silly install resolved [ { name: 'domelementtype',
42606 silly install resolved version: '1.1.3',
42606 silly install resolved description: 'all the types of nodes in htmlparser2\'s dom',
42606 silly install resolved main: 'index.js',
42606 silly install resolved repository: { type: 'git', url: 'git://github.com/FB55/domelementtype.git' },
42606 silly install resolved keywords: [ 'dom', 'htmlparser2' ],
42606 silly install resolved author: { name: 'Felix Boehm', email: 'me@feedic.com' },
42606 silly install resolved readme: 'all the types of nodes in htmlparser2\'s dom\n',
42606 silly install resolved readmeFilename: 'readme.md',
42606 silly install resolved bugs: { url: 'https://github.com/FB55/domelementtype/issues' },
42606 silly install resolved homepage: 'https://github.com/FB55/domelementtype#readme',
42606 silly install resolved _id: 'domelementtype@1.1.3',
42606 silly install resolved _shasum: 'bd28773e2642881aec51544924299c5cd822185b',
42606 silly install resolved _resolved: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz',
42606 silly install resolved _from: 'https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz' },
42606 silly install resolved { name: 'entities',
42606 silly install resolved version: '1.1.1',
42606 silly install resolved description: 'Encode & decode XML/HTML entities with ease',
42606 silly install resolved author: { name: 'Felix Boehm', email: 'me@feedic.com' },
42606 silly install resolved keywords: [ 'html', 'xml', 'entity', 'encoding' ],
42606 silly install resolved main: './index.js',
42606 silly install resolved directories: { test: 'test' },
42606 silly install resolved devDependencies:
42606 silly install resolved { mocha: '1',
42606 silly install resolved 'mocha-lcov-reporter': '*',
42606 silly install resolved coveralls: '*',
42606 silly install resolved istanbul: '*',
42606 silly install resolved jshint: '2' },
42606 silly install resolved scripts:
42606 silly install resolved { test: 'mocha && npm run lint',
42606 silly install resolved lint: 'jshint index.js lib/*.js test/*.js',
42606 silly install resolved lcov: 'istanbul cover _mocha --report lcovonly -- -R spec',
42606 silly install resolved coveralls: 'npm run lint && npm run lcov && (cat coverage/lcov.info | coveralls || exit 0)' },
42606 silly install resolved repository: { type: 'git', url: 'git://github.com/fb55/node-entities.git' },
42606 silly install resolved license: 'BSD-like',
42606 silly install resolved jshintConfig:
42606 silly install resolved { eqeqeq: true,
42606 silly install resolved freeze: true,
42606 silly install resolved latedef: 'nofunc',
42606 silly install resolved noarg: true,
42606 silly install resolved nonbsp: true,
42606 silly install resolved quotmark: 'double',
42606 silly install resolved undef: true,
42606 silly install resolved unused: true,
42606 silly install resolved trailing: true,
42606 silly install resolved eqnull: true,
42606 silly install resolved proto: true,
42606 silly install resolved smarttabs: true,
42606 silly install resolved node: true,
42606 silly install resolved globals: [Object] },
42606 silly install resolved readme: '#entities [![NPM version](http://img.shields.io/npm/v/entities.svg)](https://npmjs.org/package/entities) [![Downloads](https://img.shields.io/npm/dm/entities.svg)](https://npmjs.org/package/entities) [![Build Status](http://img.shields.io/travis/fb55/node-entities.svg)](http://travis-ci.org/fb55/node-entities) [![Coverage](http://img.shields.io/coveralls/fb55/node-entities.svg)](https://coveralls.io/r/fb55/node-entities)\n\nEn- & decoder for XML/HTML entities.\n\n##How to…\n\n###…install `entities`\n\n npm i entities\n\n###…use `entities`\n\n```javascript\nvar entities = require("entities");\n//encoding\nentities.encodeXML("&#38;"); // "&amp;#38;"\nentities.encodeHTML("&#38;"); // "&amp;&num;38&semi;"\n//decoding\nentities.decodeXML("asdf &amp; &#xFF; &#xFC; &apos;"); // "asdf & ÿ ü \'"\nentities.decodeHTML("asdf &amp; &yuml; &uuml; &apos;"); // "asdf & ÿ ü \'"\n```\n\n<!-- TODO extend API -->\n\n---\n\nLicense: BSD-like\n',
42606 silly install resolved readmeFilename: 'readme.md',
42606 silly install resolved bugs: { url: 'https://github.com/fb55/node-entities/issues' },
42606 silly install resolved homepage: 'https://github.com/fb55/node-entities#readme',
42606 silly install resolved _id: 'entities@1.1.1',
42606 silly install resolved _shasum: '6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0',
42606 silly install resolved _resolved: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz',
42606 silly install resolved _from: 'https://registry.npmjs.org/entities/-/entities-1.1.1.tgz' } ]
42607 info install domelementtype@1.1.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
42608 info install entities@1.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
42609 info installOne domelementtype@1.1.3
42610 verbose installOne of domelementtype to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer not in flight; installing
42611 info installOne entities@1.1.1
42612 verbose installOne of entities to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer not in flight; installing
42613 verbose lock using /home/lukas/.npm/_locks/domelementtype-c631fbcf8b8dcc9a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42614 verbose lock using /home/lukas/.npm/_locks/entities-a103759ab3c84f05.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42615 silly install write writing domelementtype 1.1.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42616 silly install write writing entities 1.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42617 silly gunzTarPerm extractEntry ts/rx.backpressure-tests.ts
42618 silly gunzTarPerm modified mode [ 'ts/rx.backpressure-tests.ts', 438, 436 ]
42619 silly gunzTarPerm extractEntry ts/rx.backpressure.d.ts
42620 silly gunzTarPerm modified mode [ 'ts/rx.backpressure.d.ts', 438, 436 ]
42621 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42622 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42623 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype is being purged from base /home/lukas/ffsync/fxa-auth-server
42624 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42625 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities is being purged from base /home/lukas/ffsync/fxa-auth-server
42626 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42627 verbose tar unpack /home/lukas/.npm/domelementtype/1.1.3/package.tgz
42628 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42629 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype is being purged
42630 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42631 verbose tar unpack /home/lukas/.npm/entities/1.1.1/package.tgz
42632 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42633 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities is being purged
42634 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42635 silly gunzTarPerm modes [ '775', '664' ]
42636 silly gunzTarPerm modes [ '775', '664' ]
42637 silly gunzTarPerm extractEntry ts/rx.binding-lite.d.ts
42638 silly gunzTarPerm modified mode [ 'ts/rx.binding-lite.d.ts', 438, 436 ]
42639 silly gunzTarPerm extractEntry ts/rx.aggregates.d.ts
42640 silly gunzTarPerm modified mode [ 'ts/rx.aggregates.d.ts', 438, 436 ]
42641 silly gunzTarPerm extractEntry package.json
42642 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42643 silly gunzTarPerm extractEntry package.json
42644 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42645 silly gunzTarPerm extractEntry LICENSE
42646 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
42647 silly gunzTarPerm extractEntry index.js
42648 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
42649 silly gunzTarPerm extractEntry LICENSE
42650 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
42651 silly gunzTarPerm extractEntry index.js
42652 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
42653 silly gunzTarPerm extractEntry ts/rx.coincidence-lite.d.ts
42654 silly gunzTarPerm modified mode [ 'ts/rx.coincidence-lite.d.ts', 438, 436 ]
42655 silly gunzTarPerm extractEntry ts/rx.coincidence.d.ts
42656 silly gunzTarPerm modified mode [ 'ts/rx.coincidence.d.ts', 438, 436 ]
42657 silly cache afterAdd esprima@1.0.4
42658 verbose afterAdd /home/lukas/.npm/esprima/1.0.4/package/package.json not in flight; writing
42659 silly gunzTarPerm extractEntry readme.md
42660 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
42661 silly gunzTarPerm extractEntry .travis.yml
42662 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
42663 silly gunzTarPerm extractEntry lib/decode.js
42664 silly gunzTarPerm modified mode [ 'lib/decode.js', 420, 436 ]
42665 verbose afterAdd /home/lukas/.npm/esprima/1.0.4/package/package.json written
42666 silly gunzTarPerm extractEntry ts/rx.d.ts
42667 silly gunzTarPerm modified mode [ 'ts/rx.d.ts', 438, 436 ]
42668 silly gunzTarPerm extractEntry ts/rx.experimental.d.ts
42669 silly gunzTarPerm modified mode [ 'ts/rx.experimental.d.ts', 438, 436 ]
42670 silly gunzTarPerm extractEntry lib/decode_codepoint.js
42671 silly gunzTarPerm modified mode [ 'lib/decode_codepoint.js', 420, 436 ]
42672 silly gunzTarPerm extractEntry lib/encode.js
42673 silly gunzTarPerm modified mode [ 'lib/encode.js', 420, 436 ]
42674 silly gunzTarPerm extractEntry ts/rx.joinpatterns.d.ts
42675 silly gunzTarPerm modified mode [ 'ts/rx.joinpatterns.d.ts', 438, 436 ]
42676 silly gunzTarPerm extractEntry ts/rx.lite.d.ts
42677 silly gunzTarPerm modified mode [ 'ts/rx.lite.d.ts', 438, 436 ]
42678 silly gunzTarPerm extractEntry ts/rx.testing.d.ts
42679 silly gunzTarPerm modified mode [ 'ts/rx.testing.d.ts', 438, 436 ]
42680 silly gunzTarPerm extractEntry ts/rx.time-lite.d.ts
42681 silly gunzTarPerm modified mode [ 'ts/rx.time-lite.d.ts', 438, 436 ]
42682 silly gunzTarPerm extractEntry maps/decode.json
42683 silly gunzTarPerm modified mode [ 'maps/decode.json', 420, 436 ]
42684 silly gunzTarPerm extractEntry maps/entities.json
42685 silly gunzTarPerm modified mode [ 'maps/entities.json', 420, 436 ]
42686 silly gunzTarPerm extractEntry maps/legacy.json
42687 silly gunzTarPerm modified mode [ 'maps/legacy.json', 420, 436 ]
42688 silly gunzTarPerm extractEntry ts/rx.time.d.ts
42689 silly gunzTarPerm modified mode [ 'ts/rx.time.d.ts', 438, 436 ]
42690 silly gunzTarPerm extractEntry ts/rx.virtualtime.d.ts
42691 silly gunzTarPerm modified mode [ 'ts/rx.virtualtime.d.ts', 438, 436 ]
42692 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype/package.json
42693 info preinstall domelementtype@1.1.3
42694 silly gunzTarPerm extractEntry maps/xml.json
42695 silly gunzTarPerm modified mode [ 'maps/xml.json', 420, 436 ]
42696 silly gunzTarPerm extractEntry readme.md
42697 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
42698 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype/package.json
42699 silly cache afterAdd falafel@0.1.6
42700 verbose afterAdd /home/lukas/.npm/falafel/0.1.6/package/package.json not in flight; writing
42701 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype/package.json
42702 verbose afterAdd /home/lukas/.npm/falafel/0.1.6/package/package.json written
42703 silly install resolved [ { name: 'xtend',
42703 silly install resolved version: '2.1.2',
42703 silly install resolved description: 'extend like a boss',
42703 silly install resolved keywords: [ 'extend', 'merge', 'options', 'opts', 'object', 'array' ],
42703 silly install resolved author: { name: 'Raynos', email: 'raynos2@gmail.com' },
42703 silly install resolved repository: { type: 'git', url: 'git://github.com/Raynos/xtend.git' },
42703 silly install resolved main: 'index',
42703 silly install resolved scripts: { test: 'node test' },
42703 silly install resolved dependencies: { 'object-keys': '~0.4.0' },
42703 silly install resolved devDependencies: { tape: '~1.1.0' },
42703 silly install resolved homepage: 'https://github.com/Raynos/xtend',
42703 silly install resolved contributors: [ [Object], [Object] ],
42703 silly install resolved bugs:
42703 silly install resolved { url: 'https://github.com/Raynos/xtend/issues',
42703 silly install resolved email: 'raynos2@gmail.com' },
42703 silly install resolved licenses: [ [Object] ],
42703 silly install resolved testling: { files: 'test.js', browsers: [Object] },
42703 silly install resolved engines: { node: '>=0.4' },
42703 silly install resolved readme: '# xtend\n\n[![browser support][3]][4]\n\nExtend like a boss\n\nxtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes presedence.\n\n## Examples\n\n```js\nvar extend = require("xtend")\n\nvar combination = extend({\n a: "a"\n}, {\n b: "b"\n})\n// { a: "a", b: "b" }\n```\n\n\n## MIT Licenced\n\n\n [3]: http://ci.testling.com/Raynos/xtend.png\n [4]: http://ci.testling.com/Raynos/xtend\n',
42703 silly install resolved readmeFilename: 'README.md',
42703 silly install resolved _id: 'xtend@2.1.2',
42703 silly install resolved _shasum: '6efecc2a4dad8e6962c4901b337ce7ba87b5d28b',
42703 silly install resolved _resolved: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz',
42703 silly install resolved _from: 'https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz' },
42703 silly install resolved { name: 'esprima',
42703 silly install resolved description: 'ECMAScript parsing infrastructure for multipurpose analysis',
42703 silly install resolved homepage: 'http://esprima.org',
42703 silly install resolved main: 'esprima.js',
42703 silly install resolved bin:
42703 silly install resolved { esparse: './bin/esparse.js',
42703 silly install resolved esvalidate: './bin/esvalidate.js' },
42703 silly install resolved files:
42703 silly install resolved [ 'bin',
42703 silly install resolved 'test/run.js',
42703 silly install resolved 'test/runner.js',
42703 silly install resolved 'test/test.js',
42703 silly install resolved 'test/compat.js',
42703 silly install resolved 'test/reflect.js',
42703 silly install resolved 'esprima.js' ],
42703 silly install resolved version: '1.0.4',
42703 silly install resolved engines: { node: '>=0.4.0' },
42703 silly install resolved maintainers: [ [Object] ],
42703 silly install resolved repository:
42703 silly install resolved { type: 'git',
42703 silly install resolved url: 'git+ssh://git@github.com/ariya/esprima.git' },
42703 silly install resolved licenses: [ [Object] ],
42703 silly install resolved keywords: [ 'ast', 'ecmascript', 'javascript', 'parser', 'syntax' ],
42703 silly install resolved scripts:
42703 silly install resolved { test: 'node test/run.js',
42703 silly install resolved benchmark: 'node test/benchmarks.js',
42703 silly install resolved 'benchmark-quick': 'node test/benchmarks.js quick' },
42703 silly install resolved readme: '**Esprima** ([esprima.org](http://esprima.org)) is a high performance,\nstandard-compliant [ECMAScript](http://www.ecma-international.org/publications/standards/Ecma-262.htm)\nparser written in ECMAScript (also popularly known as\n[JavaScript](http://en.wikipedia.org/wiki/JavaScript>JavaScript)).\nEsprima is created and maintained by [Ariya Hidayat](http://twitter.com/ariyahidayat),\nwith the help of [many contributors](https://github.com/ariya/esprima/contributors).\n\nEsprima runs on web browsers (IE 6+, Firefox 1+, Safari 3+, Chrome 1+, Konqueror 4.6+, Opera 8+) as well as\n[Node.js](http://nodejs.org).\n\n### Features\n\n- Full support for [ECMAScript 5.1](http://www.ecma-international.org/publications/standards/Ecma-262.htm)(ECMA-262)\n- Sensible [syntax tree format](http://esprima.org/doc/index.html#ast) compatible with Mozilla\n[Parser AST](https://developer.mozilla.org/en/SpiderMonkey/Parser_API)\n- Heavily tested (> 550 [unit tests](http://esprima.org/test/) with solid 100% statement coverage)\n- Optional tracking of syntax node location (index-based and line-column)\n- Experimental support for ES6/Harmony (module, class, destructuring, ...)\n\nEsprima is blazing fast (see the [benchmark suite](http://esprima.org/test/benchmarks.html)).\nIt is up to 3x faster than UglifyJS v1 and it is still [competitive](http://esprima.org/test/compare.html)\nwith the new generation of fast parsers.\n\n### Applications\n\nEsprima serves as the basis for many popular JavaScript development tools:\n\n- Code coverage analysis: [node-cover](https://github.com/itay/node-cover), [Istanbul](https://github.com/yahoo/Istanbul)\n- Documentation tool: [JFDoc](https://github.com/thejohnfreeman/jfdoc), [JSDuck](https://github.com/senchalabs/jsduck)\n- Language extension: [LLJS](http://mbebenita.github.com/LLJS/) (low-level JS),\n[Sweet.js](http://sweetjs.org/) (macro)\n- ES6/Harmony transpiler: [Six](https://github.com/matthewrobb/six), [Harmonizr](https://github.com/jdiamond/harmonizr)\n- Eclipse Orion smart editing ([outline view](https://github.com/aclement/esprima-outline), [content assist](http://contraptionsforprogramming.blogspot.com/2012/02/better-javascript-content-assist-in.html))\n- Source code modification: [Esmorph](https://github.com/ariya/esmorph), [Code Painter](https://github.com/fawek/codepainter),\n- Source transformation: [node-falafel](https://github.com/substack/node-falafel), [Esmangle](https://github.com/Constellation/esmangle), [escodegen](https://github.com/Constellation/escodegen)\n\n### Questions?\n- [Documentation](http://esprima.org/doc)\n- [Issue tracker](http://issues.esprima.org): [known problems](http://code.google.com/p/esprima/issues/list?q=Defect)\nand [future plans](http://code.google.com/p/esprima/issues/list?q=Enhancement)\n- [Mailing list](http://groups.google.com/group/esprima)\n- [Contribution guide](http://esprima.org/doc/index.html#contribution)\n\nFollow [@Esprima](http://twitter.com/Esprima) on Twitter to get the\ndevelopment updates.\nFeedback and contribution are welcomed!\n\n### License\n\nCopyright (C) 2012, 2011 [Ariya Hidayat](http://ariya.ofilabs.com/about)\n and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n',
42703 silly install resolved readmeFilename: 'README.md',
42703 silly install resolved bugs: { url: 'https://github.com/ariya/esprima/issues' },
42703 silly install resolved _id: 'esprima@1.0.4',
42703 silly install resolved _shasum: '9f557e08fc3b4d26ece9dd34f8fbf476b62585ad',
42703 silly install resolved _resolved: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz',
42703 silly install resolved _from: 'https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz' },
42703 silly install resolved { name: 'falafel',
42703 silly install resolved description: 'transform the ast on a recursive walk',
42703 silly install resolved version: '0.1.6',
42703 silly install resolved repository:
42703 silly install resolved { type: 'git',
42703 silly install resolved url: 'git://github.com/substack/node-falafel.git' },
42703 silly install resolved main: 'index.js',
42703 silly install resolved keywords: [ 'ast', 'source', 'traversal', 'syntax', 'tree', 'burrito' ],
42703 silly install resolved directories: { example: 'example', test: 'test' },
42703 silly install resolved scripts: { test: 'tap test/*.js' },
42703 silly install resolved dependencies: { esprima: '~1.0.2' },
42703 silly install resolved devDependencies: { tape: '~0.0.2', tap: '~0.3.0' },
42703 silly install resolved engines: { node: '>=0.4.0' },
42703 silly install resolved license: 'MIT',
42703 silly install resolved author:
42703 silly install resolved { name: 'James Halliday',
42703 silly install resolved email: 'mail@substack.net',
42703 silly install resolved url: 'http://substack.net' },
42703 silly install resolved testling: { files: 'test/*.js', browsers: [Object] },
42703 silly install resolved readme: '# falafel\n\nTransform the [ast](http://en.wikipedia.org/wiki/Abstract_syntax_tree) on a\nrecursive walk.\n\n[![browser support](http://ci.testling.com/substack/node-falafel.png)](http://ci.testling.com/substack/node-falafel)\n\n[![build status](https://secure.travis-ci.org/substack/node-falafel.png)](http://travis-ci.org/substack/node-falafel)\n\nThis module is like [burrito](https://github.com/substack/node-burrito),\nexcept that it uses [esprima](http://esprima.org) instead of\n[uglify](https://github.com/mishoo/UglifyJS)\nfor friendlier-looking ast nodes.\n\n# example\n\n## array.js\n\nPut a function wrapper around all array literals.\n\n``` js\nvar falafel = require(\'falafel\');\n\nvar src = \'(\' + function () {\n var xs = [ 1, 2, [ 3, 4 ] ];\n var ys = [ 5, 6 ];\n console.dir([ xs, ys ]);\n} + \')()\';\n\nvar output = falafel(src, function (node) {\n if (node.type === \'ArrayExpression\') {\n node.update(\'fn(\' + node.source() + \')\');\n }\n});\nconsole.log(output);\n```\n\noutput:\n\n```\n(function () {\n var xs = fn([ 1, 2, fn([ 3, 4 ]) ]);\n var ys = fn([ 5, 6 ]);\n console.dir(fn([ xs, ys ]));\n})()\n```\n\n# methods\n\n``` js\nvar falafel = require(\'falafel\')\n```\n\n## falafel(src, opts={}, fn)\n\nTransform the string source `src` with the function `fn`, returning a\nstring-like transformed output object.\n\nFor every node in the ast, `fn(node)` fires. The recursive walk is a\npre-traversal, so children get called before their parents.\n\nPerforming a pre-traversal makes it easier to write nested transforms since\ntransforming parents often requires transforming all its children first.\n\nThe return value is string-like (it defines `.toString()` and `.inspect()`) so\nthat you can call `node.update()` asynchronously after the function has\nreturned and still capture the output.\n\nInstead of passing a `src` you can also use `opts.source`.\n\nAll of the `opts` will be passed directly to esprima except for `\'range\'` which\nis always turned on because falafel needs it.\n\nSome of the options you might want from esprima includes:\n`\'loc\'`, `\'raw\'`, `\'comments\'`, `\'tokens\'`, and `\'tolerant\'`.\n\n# nodes\n\nAside from the regular [esprima](http://esprima.org) data, you can also call\nsome inserted methods on nodes.\n\nAside from updating the current node, you can also reach into sub-nodes to call\nupdate functions on children from parent nodes.\n\n## node.source()\n\nReturn the source for the given node, including any modifications made to\nchildren nodes.\n\n## node.update(s)\n\nTransform the source for the present node to the string `s`.\n\nNote that in `\'ForStatement\'` node types, there is an existing subnode called\n`update`. For those nodes all the properties are copied over onto the\n`node.update()` function.\n\n## node.parent\n\nReference to the parent element or `null` at the root element.\n\n# install\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install falafel\n```\n\n# license\n\nMIT\n\n',
42703 silly install resolved readmeFilename: 'README.markdown',
42703 silly install resolved bugs: { url: 'https://github.com/substack/node-falafel/issues' },
42703 silly install resolved homepage: 'https://github.com/substack/node-falafel#readme',
42703 silly install resolved _id: 'falafel@0.1.6',
42703 silly install resolved _shasum: '3084cf3d41b59d15c813be6f259557fdc82b0660',
42703 silly install resolved _resolved: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz',
42703 silly install resolved _from: 'https://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz' } ]
42704 info install xtend@2.1.2 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
42705 info install esprima@1.0.4 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
42706 info install falafel@0.1.6 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
42707 info installOne xtend@2.1.2
42708 verbose installOne of xtend to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket not in flight; installing
42709 info installOne esprima@1.0.4
42710 verbose installOne of esprima to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket not in flight; installing
42711 info installOne falafel@0.1.6
42712 verbose installOne of falafel to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket not in flight; installing
42713 silly gunzTarPerm extractEntry test/test.js
42714 silly gunzTarPerm modified mode [ 'test/test.js', 420, 436 ]
42715 silly gunzTarPerm extractEntry test/mocha.opts
42716 silly gunzTarPerm modified mode [ 'test/mocha.opts', 420, 436 ]
42717 verbose lock using /home/lukas/.npm/_locks/xtend-0c8555732fbc010c.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42718 verbose lock using /home/lukas/.npm/_locks/esprima-d928a568b4b4bcc7.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42719 verbose lock using /home/lukas/.npm/_locks/falafel-6fab312efac6d9f5.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42720 silly install write writing xtend 2.1.2 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42721 silly install write writing esprima 1.0.4 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42722 silly install write writing falafel 0.1.6 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42723 silly install resolved []
42724 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42725 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42726 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42727 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42728 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42729 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend is being purged from base /home/lukas/ffsync/fxa-auth-server
42730 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42731 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel is being purged from base /home/lukas/ffsync/fxa-auth-server
42732 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42733 info linkStuff domelementtype@1.1.3
42734 silly linkStuff domelementtype@1.1.3 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules as its parent node_modules
42735 verbose tar unpack /home/lukas/.npm/xtend/2.1.2/package.tgz
42736 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42737 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend is being purged
42738 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
42739 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima is being purged from base /home/lukas/ffsync/fxa-auth-server
42740 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42741 verbose tar unpack /home/lukas/.npm/falafel/0.1.6/package.tgz
42742 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42743 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel is being purged
42744 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42745 silly gunzTarPerm modes [ '775', '664' ]
42746 verbose tar unpack /home/lukas/.npm/esprima/1.0.4/package.tgz
42747 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42748 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima is being purged
42749 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42750 silly gunzTarPerm modes [ '775', '664' ]
42751 silly gunzTarPerm modes [ '775', '664' ]
42752 silly gunzTarPerm extractEntry package.json
42753 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42754 silly gunzTarPerm extractEntry package.json
42755 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42756 silly gunzTarPerm extractEntry package.json
42757 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42758 silly gunzTarPerm extractEntry .npmignore
42759 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
42760 silly gunzTarPerm extractEntry README.md
42761 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
42762 silly gunzTarPerm extractEntry index.js
42763 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
42764 silly gunzTarPerm extractEntry example/prompt.js
42765 silly gunzTarPerm modified mode [ 'example/prompt.js', 420, 436 ]
42766 silly gunzTarPerm extractEntry README.md
42767 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
42768 silly gunzTarPerm extractEntry esprima.js
42769 silly gunzTarPerm modified mode [ 'esprima.js', 420, 436 ]
42770 verbose linkBins domelementtype@1.1.3
42771 verbose linkMans domelementtype@1.1.3
42772 verbose rebuildBundles domelementtype@1.1.3
42773 info install domelementtype@1.1.3
42774 info postinstall domelementtype@1.1.3
42775 verbose unlock done using /home/lukas/.npm/_locks/domelementtype-c631fbcf8b8dcc9a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/domelementtype
42776 silly gunzTarPerm extractEntry LICENCE
42777 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
42778 silly gunzTarPerm extractEntry has-keys.js
42779 silly gunzTarPerm modified mode [ 'has-keys.js', 420, 436 ]
42780 silly gunzTarPerm extractEntry example/array.js
42781 silly gunzTarPerm modified mode [ 'example/array.js', 420, 436 ]
42782 silly gunzTarPerm extractEntry test/async.js
42783 silly gunzTarPerm modified mode [ 'test/async.js', 420, 436 ]
42784 silly gunzTarPerm extractEntry bin/esparse.js
42785 silly gunzTarPerm modified mode [ 'bin/esparse.js', 420, 436 ]
42786 silly gunzTarPerm extractEntry index.js
42787 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
42788 silly gunzTarPerm extractEntry mutable.js
42789 silly gunzTarPerm modified mode [ 'mutable.js', 420, 436 ]
42790 silly gunzTarPerm extractEntry test/for.js
42791 silly gunzTarPerm modified mode [ 'test/for.js', 420, 436 ]
42792 silly gunzTarPerm extractEntry test/parent.js
42793 silly gunzTarPerm modified mode [ 'test/parent.js', 420, 436 ]
42794 silly gunzTarPerm extractEntry bin/esvalidate.js
42795 silly gunzTarPerm modified mode [ 'bin/esvalidate.js', 493, 509 ]
42796 silly gunzTarPerm extractEntry test/compat.js
42797 silly gunzTarPerm modified mode [ 'test/compat.js', 420, 436 ]
42798 silly gunzTarPerm extractEntry test/reflect.js
42799 silly gunzTarPerm modified mode [ 'test/reflect.js', 420, 436 ]
42800 silly gunzTarPerm extractEntry test/run.js
42801 silly gunzTarPerm modified mode [ 'test/run.js', 420, 436 ]
42802 silly gunzTarPerm extractEntry test/runner.js
42803 silly gunzTarPerm modified mode [ 'test/runner.js', 420, 436 ]
42804 silly gunzTarPerm extractEntry test.js
42805 silly gunzTarPerm modified mode [ 'test.js', 420, 436 ]
42806 silly gunzTarPerm extractEntry Makefile
42807 silly gunzTarPerm modified mode [ 'Makefile', 420, 436 ]
42808 silly gunzTarPerm extractEntry test/test.js
42809 silly gunzTarPerm modified mode [ 'test/test.js', 420, 436 ]
42810 silly gunzTarPerm extractEntry test/array.js
42811 silly gunzTarPerm modified mode [ 'test/array.js', 420, 436 ]
42812 silly gunzTarPerm extractEntry .travis.yml
42813 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
42814 silly gunzTarPerm extractEntry README.markdown
42815 silly gunzTarPerm modified mode [ 'README.markdown', 420, 436 ]
42816 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities/package.json
42817 info preinstall entities@1.1.1
42818 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities/package.json
42819 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities/package.json
42820 silly install resolved []
42821 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42822 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42823 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/package.json
42824 info linkStuff entities@1.1.1
42825 silly linkStuff entities@1.1.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules as its parent node_modules
42826 info preinstall xtend@2.1.2
42827 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/package.json
42828 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend',
42828 verbose readDependencies: using existing wrap { 'object-keys':
42828 verbose readDependencies: using existing wrap { version: '0.4.0',
42828 verbose readDependencies: using existing wrap from: 'object-keys@>=0.4.0 <0.5.0',
42828 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' } } ]
42829 verbose from wrap [ 'object-keys',
42829 verbose from wrap { version: '0.4.0',
42829 verbose from wrap from: 'object-keys@>=0.4.0 <0.5.0',
42829 verbose from wrap resolved: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' } ]
42830 verbose readDependencies returned deps { 'object-keys': 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' }
42831 silly prepareForInstallMany adding object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz from xtend dependencies
42832 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/package.json
42833 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel/package.json
42834 verbose linkBins entities@1.1.1
42835 verbose linkMans entities@1.1.1
42836 verbose rebuildBundles entities@1.1.1
42837 info install entities@1.1.1
42838 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend',
42838 verbose readDependencies: using existing wrap { 'object-keys':
42838 verbose readDependencies: using existing wrap { version: '0.4.0',
42838 verbose readDependencies: using existing wrap from: 'object-keys@>=0.4.0 <0.5.0',
42838 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' } } ]
42839 verbose from wrap [ 'object-keys',
42839 verbose from wrap { version: '0.4.0',
42839 verbose from wrap from: 'object-keys@>=0.4.0 <0.5.0',
42839 verbose from wrap resolved: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' } ]
42840 verbose readDependencies returned deps { 'object-keys': 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' }
42841 info postinstall entities@1.1.1
42842 silly cache add args [ 'object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
42842 silly cache add null ]
42843 verbose cache add spec object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42844 info preinstall falafel@0.1.6
42845 silly cache add parsed spec Result {
42845 silly cache add raw: 'object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
42845 silly cache add scope: null,
42845 silly cache add name: 'object-keys',
42845 silly cache add rawSpec: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
42845 silly cache add spec: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
42845 silly cache add type: 'remote' }
42846 silly mapToRegistry name object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42847 silly mapToRegistry using default registry
42848 silly mapToRegistry registry https://registry.npmjs.org/
42849 silly mapToRegistry uri https://registry.npmjs.org/object-keys@https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42850 verbose addRemoteTarball https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz not in flight; adding
42851 verbose addRemoteTarball [ 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
42851 verbose addRemoteTarball null ]
42852 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel/package.json
42853 verbose unlock done using /home/lukas/.npm/_locks/entities-a103759ab3c84f05.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer/node_modules/entities
42854 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
42855 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
42856 info retry fetch attempt 1 at 9:02:49 PM
42857 info attempt registry request try #1 at 9:02:49 PM
42858 http fetch GET https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42859 info linkStuff dom-serializer@0.1.0
42860 silly linkStuff dom-serializer@0.1.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules as its parent node_modules
42861 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel/package.json
42862 silly install resolved []
42863 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42864 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42865 info linkStuff falafel@0.1.6
42866 silly linkStuff falafel@0.1.6 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules as its parent node_modules
42867 verbose linkBins dom-serializer@0.1.0
42868 verbose linkMans dom-serializer@0.1.0
42869 verbose rebuildBundles dom-serializer@0.1.0
42870 verbose rebuildBundles [ 'domelementtype', 'entities' ]
42871 info install dom-serializer@0.1.0
42872 info postinstall dom-serializer@0.1.0
42873 verbose unlock done using /home/lukas/.npm/_locks/dom-serializer-eaa8d215ddabe89c.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/node_modules/dom-serializer
42874 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils
42875 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils
42876 info linkStuff domutils@1.5.1
42877 silly linkStuff domutils@1.5.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules as its parent node_modules
42878 verbose linkBins falafel@0.1.6
42879 verbose linkMans falafel@0.1.6
42880 verbose rebuildBundles falafel@0.1.6
42881 info install falafel@0.1.6
42882 info postinstall falafel@0.1.6
42883 verbose unlock done using /home/lukas/.npm/_locks/falafel-6fab312efac6d9f5.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/falafel
42884 verbose linkBins domutils@1.5.1
42885 verbose linkMans domutils@1.5.1
42886 verbose rebuildBundles domutils@1.5.1
42887 verbose rebuildBundles [ 'dom-serializer' ]
42888 info install domutils@1.5.1
42889 info postinstall domutils@1.5.1
42890 http fetch 200 https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42891 verbose unlock done using /home/lukas/.npm/_locks/domutils-7f74455f23f11cf5.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils
42892 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2
42893 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2
42894 info linkStuff htmlparser2@3.7.3
42895 silly linkStuff htmlparser2@3.7.3 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules as its parent node_modules
42896 silly fetchAndShaCheck shasum 28a6aae7428dd2c3a92f3d95f21335dd204e0336
42897 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz not in flight; adding
42898 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42899 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz
42900 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-2bafa69c6d18
42901 silly gentlyRm /tmp/npm-30115-af71656d/unpack-2bafa69c6d18 is being purged
42902 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-2bafa69c6d18
42903 silly gunzTarPerm modes [ '775', '664' ]
42904 silly gunzTarPerm extractEntry package.json
42905 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
42906 silly gunzTarPerm extractEntry .npmignore
42907 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
42908 silly gunzTarPerm extractEntry README.md
42909 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
42910 verbose linkBins htmlparser2@3.7.3
42911 verbose linkMans htmlparser2@3.7.3
42912 verbose rebuildBundles htmlparser2@3.7.3
42913 verbose rebuildBundles [ 'domelementtype', 'domhandler', 'domutils', 'readable-stream' ]
42914 info install htmlparser2@3.7.3
42915 info postinstall htmlparser2@3.7.3
42916 verbose unlock done using /home/lukas/.npm/_locks/htmlparser2-be3a2a9a5dab44fe.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio/node_modules/htmlparser2
42917 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio
42918 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio
42919 silly gunzTarPerm extractEntry foreach.js
42920 silly gunzTarPerm modified mode [ 'foreach.js', 420, 436 ]
42921 silly gunzTarPerm extractEntry index.js
42922 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
42923 silly gunzTarPerm extractEntry isArguments.js
42924 silly gunzTarPerm modified mode [ 'isArguments.js', 420, 436 ]
42925 silly gunzTarPerm extractEntry shim.js
42926 silly gunzTarPerm modified mode [ 'shim.js', 420, 436 ]
42927 silly gunzTarPerm extractEntry .travis.yml
42928 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
42929 silly gunzTarPerm extractEntry test/foreach.js
42930 silly gunzTarPerm modified mode [ 'test/foreach.js', 420, 436 ]
42931 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima/package.json
42932 silly gunzTarPerm extractEntry test/index.js
42933 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
42934 info preinstall esprima@1.0.4
42935 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima/package.json
42936 info linkStuff cheerio@0.14.0
42937 silly linkStuff cheerio@0.14.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules as its parent node_modules
42938 silly gunzTarPerm extractEntry test/isArguments.js
42939 silly gunzTarPerm modified mode [ 'test/isArguments.js', 420, 436 ]
42940 silly gunzTarPerm extractEntry test/shim.js
42941 silly gunzTarPerm modified mode [ 'test/shim.js', 420, 436 ]
42942 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima/package.json
42943 silly install resolved []
42944 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42945 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42946 verbose linkBins cheerio@0.14.0
42947 verbose linkMans cheerio@0.14.0
42948 verbose rebuildBundles cheerio@0.14.0
42949 verbose rebuildBundles [ 'CSSselect', 'entities', 'htmlparser2', 'lodash' ]
42950 info install cheerio@0.14.0
42951 info linkStuff esprima@1.0.4
42952 silly linkStuff esprima@1.0.4 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules as its parent node_modules
42953 info postinstall cheerio@0.14.0
42954 verbose unlock done using /home/lukas/.npm/_locks/cheerio-a2cb10f3ddfaff34.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/cheerio
42955 verbose linkBins esprima@1.0.4
42956 verbose link bins [ { esparse: './bin/esparse.js',
42956 verbose link bins esvalidate: './bin/esvalidate.js' },
42956 verbose link bins '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/.bin',
42956 verbose link bins false ]
42957 verbose linkMans esprima@1.0.4
42958 verbose rebuildBundles esprima@1.0.4
42959 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/.bin/esparse is being purged
42960 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/.bin/esparse
42961 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/.bin/esvalidate is being purged
42962 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/.bin/esvalidate
42963 info install esprima@1.0.4
42964 silly cache afterAdd JSV@4.0.2
42965 verbose afterAdd /home/lukas/.npm/JSV/4.0.2/package/package.json not in flight; writing
42966 info postinstall esprima@1.0.4
42967 verbose unlock done using /home/lukas/.npm/_locks/esprima-d928a568b4b4bcc7.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/esprima
42968 verbose afterAdd /home/lukas/.npm/JSV/4.0.2/package/package.json written
42969 silly install resolved [ { name: 'nomnom',
42969 silly install resolved description: 'Option parser with generated usage and commands',
42969 silly install resolved version: '1.8.1',
42969 silly install resolved author: { name: 'Heather Arthur', email: 'fayearthur@gmail.com' },
42969 silly install resolved scripts: { test: 'nodeunit test/*.js' },
42969 silly install resolved repository:
42969 silly install resolved { type: 'git',
42969 silly install resolved url: 'git+ssh://git@github.com/harthur/nomnom.git' },
42969 silly install resolved main: './nomnom',
42969 silly install resolved keywords:
42969 silly install resolved [ 'arguments',
42969 silly install resolved 'option parser',
42969 silly install resolved 'command line',
42969 silly install resolved 'options',
42969 silly install resolved 'parser' ],
42969 silly install resolved dependencies: { underscore: '~1.6.0', chalk: '~0.4.0' },
42969 silly install resolved devDependencies: { nodeunit: '~0.7.4' },
42969 silly install resolved readme: '# nomnom\nnomnom is an option parser for node. It noms your args and gives them back to you in a hash.\n\n```javascript\nvar opts = require("nomnom")\n .option(\'debug\', {\n abbr: \'d\',\n flag: true,\n help: \'Print debugging info\'\n })\n .option(\'config\', {\n abbr: \'c\',\n default: \'config.json\',\n help: \'JSON file with tests to run\'\n })\n .option(\'version\', {\n flag: true,\n help: \'print version and exit\',\n callback: function() {\n return "version 1.2.4";\n }\n })\n .parse();\n\nif (opts.debug)\n // do stuff\n```\n\nYou don\'t have to specify anything if you don\'t want to:\n\n```javascript\nvar opts = require("nomnom").parse();\n\nvar url = opts[0]; // get the first positional arg\nvar file = opts.file // see if --file was specified\nvar verbose = opts.v // see if -v was specified\nvar extras = opts._ // get an array of the unmatched, positional args\n```\n\n# Install\nfor [node.js](http://nodejs.org/) and [npm](http://github.com/isaacs/npm):\n\n\tnpm install nomnom\n\n# More Details\nNomnom supports args like `-d`, `--debug`, `--no-debug`, `--file=test.txt`, `--file test.txt`, `-f test.txt`, `-xvf`, and positionals. Positionals are arguments that don\'t fit the `-a` or `--atomic` format and aren\'t attached to an option.\n\nValues are JSON parsed, so `--debug=true --count=3 --file=log.txt` would give you:\n\n```\n{\n "debug": true,\n "count": 3,\n "file": "log.txt"\n}\n```\n\n# Commands\nNomnom supports command-based interfaces (e.g. with git: `git add -p` and `git rebase -i` where `add` and `rebase` are the commands):\n\n```javascript\nvar parser = require("nomnom");\n\nparser.command(\'browser\')\n .callback(function(opts) {\n runBrowser(opts.url);\n })\n .help("run browser tests");\n\nparser.command(\'sanity\')\n .option(\'outfile\', {\n abbr: \'o\',\n help: "file to write results to"\n })\n .option(\'config\', {\n abbr: \'c\',\n default: \'config.json\',\n help: "json manifest of tests to run"\n })\n .callback(function(opts) {\n runSanity(opts.filename);\n })\n .help("run the sanity tests")\n\nparser.parse();\n```\n\nEach command generates its own usage message when `-h` or `--help` is specified with the command.\n\n# Usage\nNomnom prints out a usage message if `--help` or `-h` is an argument. Usage for these options in `test.js`:\n\n```javascript\nvar opts = require("nomnom")\n .script("runtests")\n .options({\n path: {\n position: 0,\n help: "Test file to run",\n list: true\n },\n config: {\n abbr: \'c\',\n metavar: \'FILE\',\n help: "Config file with tests to run"\n },\n debug: {\n abbr: \'d\',\n flag: true,\n help: "Print debugging info"\n }\n }).parse();\n```\n\n...would look like this:\n\n\tusage: runtests <path>... [options]\n\n\tpath Test file to run\n\n\toptions:\n\t -c FILE, --config FILE Config file with tests to run\n\t -d, --debug Print debugging info\n\n# Options\nYou can either add a specification for an option with `nomnom.option(\'name\', spec)` or pass the specifications to `nomnom.options()` as a hash keyed on option name. Each option specification can have the following fields:\n\n#### abbr and full\n`abbr` is the single character string to match to this option, `full` is the full-length string (defaults to the name of the option).\n\nThis option matches `-d` and `--debug` on the command line:\n\n```javascript\nnomnom.option(\'debug\', {\n abbr: \'d\'\n})\n```\n\nThis option matches `-n 3`, `--num-lines 12` on the command line:\n\n```javascript\nnomnom.option(\'numLines\', {\n abbr: \'n\',\n full: \'num-lines\'\n})\n```\n\n#### flag\n\nIf this is set to true, the option acts as a flag and doesn\'t swallow the next value on the command line. Default is `false`, so normally if you had a command line `--config test.js`, `config` would get a value of `test.js` in the options hash. Whereas if you specify:\n\n```javascript\nnomnom.option(\'config\', {\n flag: true\n})\n```\n\n`config` would get a value of `true` in the options hash, and `test.js` would be a free positional arg.\n\n#### metavar\n\n`metavar` is used in the usage printout e.g. `"PATH"` in `"-f PATH, --file PATH"`.\n\n#### string\n\nA shorthand for `abbr`, `full`, and `metavar`. For example, to attach an option to `-c` and `--config` use a `string: "-c FILE, --config=FILE"`\n\n#### help\n\nA string description of the option for the usage printout.\n\n#### default\n\nThe value to give the option if it\'s not specified in the arguments.\n\n#### type\n\nIf you don\'t want the option JSON-parsed, specify type `"string"`.\n\n#### callback\n\nA callback that will be executed as soon as the option is encountered. If the callback returns a string it will print the string and exit:\n\n```javascript\nnomnom.option(\'count\', {\n callback: function(count) {\n if (count != parseInt(count)) {\n return "count must be an integer";\n }\n }\n})\n```\n\n#### position\n\nThe position of the option if it\'s a positional argument. If the option should be matched to the first positional arg use position `0`, etc.\n\n#### list\n\nSpecifies that the option is a list. Appending can be achieved by specifying the arg more than once on the command line:\n\n\tnode test.js --file=test1.js --file=test2.js\n\nIf the option has a `position` and `list` is `true`, all positional args including and after `position` will be appended to the array.\n\n#### required\n\nIf this is set to `true` and the option isn\'t in the args, a message will be printed and the program will exit.\n\n#### choices\n\nA list of the possible values for the option (e.g. `[\'run\', \'test\', \'open\']`). If the parsed value isn\'t in the list a message will be printed and the program will exit.\n\n#### transform\n\nA function that takes the value of the option as entered and returns a new value that will be seen as the value of the option.\n\n```javascript\nnomnom.option(\'date\', {\n abbr: \'d\',\n transform: function(timestamp) {\n return new Date(timestamp);\n }\n})\n```\n\n#### hidden\n\nOption won\'t be printed in the usage\n\n\n# Parser interface\n`require("nomnom")` will give you the option parser. You can also make an instance of a parser with `require("nomnom")()`. You can chain any of these functions off of a parser:\n\n#### option\n\nAdd an option specification with the given name:\n\n```javascript\nnomnom.option(\'debug\', {\n abbr: \'d\',\n flag: true,\n help: "Print debugging info"\n})\n```\n\n#### options\n\nAdd options as a hash keyed by option name, good for a cli with tons of options like [this example](http://github.com/harthur/replace/blob/master/bin/replace.js):\n\n```javascript\nnomnom.options({\n debug: {\n abbr: \'d\',\n flag: true,\n help: "Print debugging info"\n },\n fruit: {\n help: "Fruit to buy"\n }\n})\n```\n\n#### usage\n\nThe string that will override the default generated usage message.\n\n#### help\n\nA string that is appended to the usage.\n\n#### script\n\nNomnom can\'t detect the alias used to run your script. You can use `script` to provide the correct name for the usage printout instead of e.g. `node test.js`.\n\n#### printer\n\nOverrides the usage printing function.\n\n#### command\n\nTakes a command name and gives you a command object on which you can chain command options.\n\n#### nocommand\n\nGives a command object that will be used when no command is called.\n\n#### nocolors\n\nDisables coloring of the usage message.\n\n#### parse\n\nParses node\'s `process.argv` and returns the parsed options hash. You can also provide argv:\n\n```javascript\nvar opts = nomnom.parse(["-xvf", "--atomic=true"])\n```\n\n#### nom\n\nThe same as `parse()`.\n\n# Command interface\nA command is specified with `nomnom.command(\'name\')`. All these functions can be chained on a command:\n\n#### option\n\nAdd an option specifically for this command.\n\n#### options\n\nAdd options for this command as a hash of options keyed by name.\n\n#### callback\n\nA callback that will be called with the parsed options when the command is used.\n\n#### help\n\nA help string describing the function of this command.\n\n#### usage\n\nOverride the default generated usage string for this command.\n',
42969 silly install resolved readmeFilename: 'README.md',
42969 silly install resolved bugs: { url: 'https://github.com/harthur/nomnom/issues' },
42969 silly install resolved homepage: 'https://github.com/harthur/nomnom#readme',
42969 silly install resolved _id: 'nomnom@1.8.1',
42969 silly install resolved _shasum: '2151f722472ba79e50a76fc125bb8c8f2e4dc2a7',
42969 silly install resolved _resolved: 'https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz',
42969 silly install resolved _from: 'https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz' },
42969 silly install resolved { name: 'JSV',
42969 silly install resolved version: '4.0.2',
42969 silly install resolved description: 'A JavaScript implementation of a extendable, fully compliant JSON Schema validator.',
42969 silly install resolved homepage: 'http://github.com/garycourt/JSV',
42969 silly install resolved author: { name: 'Gary Court', email: 'gary.court@gmail.com' },
42969 silly install resolved licenses: [ [Object] ],
42969 silly install resolved maintainers: [ [Object] ],
42969 silly install resolved bugs: { url: 'http://github.com/garycourt/JSV/issues' },
42969 silly install resolved repositories: [ [Object] ],
42969 silly install resolved dependencies: {},
42969 silly install resolved main: 'lib/jsv.js',
42969 silly install resolved keywords: [ 'json', 'schema', 'validator' ],
42969 silly install resolved readme: 'JSV: JSON Schema Validator\r\n==========================\r\n\r\nJSV is a JavaScript implementation of a extendable, fully compliant JSON Schema validator with the following features:\r\n\r\n*\tThe fastest extendable JSON validator available!\r\n*\tComplete implementation of all current JSON Schema draft revisions.\r\n*\tSupports creating individual environments (sandboxes) that validate using a particular schema specification.\r\n*\tProvides an intuitive API for creating new validating schema attributes, or whole new custom schema schemas.\r\n*\tSupports `self`, `full` and `describedby` hyper links.\r\n*\tValidates itself, and is bootstrapped from the JSON Schema schemas.\r\n*\tIncludes over 1100 unit tests for testing all parts of the specifications.\r\n*\tWorks in all ECMAScript 3 environments, including all web browsers and Node.js.\r\n*\tLicensed under the FreeBSD License, a very open license.\r\n\r\n## It\'s a what?\r\n\r\n**JSON** (an acronym for **JavaScript Object Notation**) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of JavaScript/ECMA-262 3rd Edition. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages. (C, C++, C#, Java, JavaScript, Perl, Python, ...) These properties make JSON an ideal data-interchange language. \\[[json.org](http://json.org)\\]\r\n\r\n**JSON Schema** is a JSON media type for defining the structure of JSON data. JSON Schema provides a contract for what JSON data is required for a given application and how to interact with it. JSON Schema is intended to define validation, documentation, hyperlink navigation, and interaction control of JSON data. \\[[draft-zyp-json-schema-02](http://tools.ietf.org/html/draft-zyp-json-schema-02)\\]\r\n\r\nA **JSON validator** is a program that takes JSON data and, with a provided schema, will ensure that the provided JSON is structured in the way defined by the schema. This ensures that if validation has passed, the JSON instance is guaranteed to be in the expected format. It will also provide an explanation on why a particular instance failed validation.\r\n\r\n## Example\r\n\r\nHere\'s an example on how to validate some JSON with JSV:\r\n\r\n\tvar JSV = require("./jsv").JSV;\r\n\tvar json = {};\r\n\tvar schema = {"type" : "object"};\r\n\tvar env = JSV.createEnvironment();\r\n\tvar report = env.validate(json, schema);\r\n\t\r\n\tif (report.errors.length === 0) {\r\n\t\t//JSON is valid against the schema\r\n\t}\r\n\r\nAnother example; for the following test:\r\n\r\n\tenv.validate({ a : 1 }, { type : \'object\', properties : { a : { type : \'string\' }} });\r\n\r\nThe generated report would look like:\r\n\r\n\t{\r\n\t\terrors : [\r\n\t\t\t{\r\n\t\t\t\tmessage : "Instance is not a required type",\r\n\t\t\t\turi : "urn:uuid:74b843b5-3aa4-44e9-b7bc-f555936fa823#/a",\r\n\t\t\t\tschemaUri : "urn:uuid:837fdefe-3bd4-4993-9a20-38a6a0624d5a#/properties/a",\r\n\t\t\t\tattribute : "type",\r\n\t\t\t\tdetails : ["string"]\r\n\t\t\t}\r\n\t\t],\r\n\t\tvalidated : {\r\n\t\t\t"urn:uuid:74b843b5-3aa4-44e9-b7bc-f555936fa823#" : ["urn:uuid:837fdefe-3bd4-4993-9a20-38a6a0624d5a#"],\r\n\t\t\t"urn:uuid:74b843b5-3aa4-44e9-b7bc-f555936fa823#/a" : ["urn:uuid:837fdefe-3bd4-4993-9a20-38a6a0624d5a#/properties/a"],\r\n\t\t\t//...\r\n\t\t},\r\n\t\tinstance : [JSONInstance object],\r\n\t\tschema : [JSONSchema object],\r\n\t\tschemaSchema : [JSONSchema object]\r\n\t}\r\n\r\n## Environments & JSON Schema support\r\n\r\nThere is no one way to validate JSON, just like there is no one way to validate XML. Even the JSON Schema specification has gone through several revisions which are not 100% backwards compatible with each other. To solve the issue of using numerous schemas already written to older specifications, JSV provides customizable environments to validate your JSON within. \r\n\r\nWhen creating an environment, you can optionally specify how you want that environment to behave. For example, this allows you to specify which version of the JSON Schema you would like the environment to behave like. JSV already provides the following environments:\r\n\r\n*\t`json-schema-draft-03`\r\n\r\n\tA complete implementation of the [third revision](http://tools.ietf.org/html/draft-zyp-json-schema-03) of the JSON Schema specification. This is the same as the second revision, except:\r\n\t\r\n\t*\t"optional" has been replaced by "required"\r\n\t*\t"requires" has been replaced by "dependencies"\r\n\t*\t"minimumCanEqual"/"maximumCanEqual" has been replaced by "exclusiveMinimum"/"exclusiveMaximum"\r\n\t*\t"self"/"full"/"describedby" links have been moved to the core schema, and are provided by "id"/"$ref"/"$schema"\r\n\t*\tAdds the attributes "patternSchema" and "additionalItems"\r\n\t*\tDeprecates the attributes "root" and "alternate"\r\n\t*\tSchemas are now versioned under the URIs "http://json-schema.org/draft-XX/", where XX is the draft number\r\n\t\r\n\tIn addition to this, all schemas from the previous versions of the JSON Schema draft are included in this environment, and are backwards compatible (where possible) with it\'s previous version.\r\n\tThis backwards compatibility can be disabled with the environment option `strict` is set to `true`.\r\n\t\r\n\tThis is currently the default environment.\r\n\r\n*\t`json-schema-draft-02`\r\n\r\n\tA complete implementation of the [second revision](http://tools.ietf.org/html/draft-zyp-json-schema-02) of the JSON Schema specification. This is the same as the first revision, except adds:\r\n\t\r\n\t*\t"targetSchema" attribute\r\n\t*\tslash-delimited fragment identifiers, which is now the default behavior\r\n\t\r\n*\t`json-schema-draft-01`\r\n\r\n\tA complete implementation of the [first revision](http://tools.ietf.org/html/draft-zyp-json-schema-01) of the JSON Schema specification, which is exactly the same as the [original draft](http://tools.ietf.org/html/draft-zyp-json-schema-00).\r\n\t\r\n\tUsers with JSON Schemas written for JSV < v2.1 should use this environment for it\'s dot-delimited fragment identifiers.\r\n\r\nEnvironments can also be customized and registered for multiple reuse. (See the section on *Extending Environments* below)\r\n\r\n## Validation API\r\n\r\nThe following methods are used to validate JSON data:\r\n\r\n### JSV.createEnvironment(*environmentID?*) *->* *&lt;Environment&gt;*\r\n\r\n*\t*environmentID* *&lt;String&gt;* *(optional)* The ID of the environment to clone a new Environment from\r\n\r\nCreates an new environment that is a copy of the Environment registered with the provided `environmentID`. If no ID is provided, the latest registered JSON Schema is used as the template.\r\n\r\nSee the above section on *Environments* for the default available Environment IDs.\r\n\r\n### *&lt;Environment&gt;*.validate(*json*, *schema*) *->* *&lt;Report&gt;*\r\n\r\n*\t*json* *&lt;Any|JSONInstance&gt;* The JSON data to validate\r\n*\t*schema* *&lt;Object|JSONInstance|JSONSchema&gt;* The schema to validate the JSON with\r\n\r\nValidates both the schema and the JSON, and returns a report of the validation.\r\n\r\n### *&lt;Report&gt;*.errors *&lt;Array&gt;*\r\n\r\nAn array of error objects from the validation process; each object represents a restriction check that failed. If the array is empty, the validation passed.\r\n\r\nThe error objects have the following schema:\r\n\r\n\t{\r\n\t\t"type" : "object",\r\n\t\t"properties" : {\r\n\t\t\t"message" : {\r\n\t\t\t\t"description" : "A user-friendly error message about what failed to validate.",\r\n\t\t\t\t"type" : "string"\r\n\t\t\t},\r\n\t\t\t"uri" : {\r\n\t\t\t\t"description" : "URI of the instance that failed to validate.",\r\n\t\t\t\t"type" : "string",\r\n\t\t\t\t"format" : "uri"\r\n\t\t\t},\r\n\t\t\t"schemaUri" : {\r\n\t\t\t\t"description" : "URI of the schema instance that reported the error.",\r\n\t\t\t\t"type" : "string",\r\n\t\t\t\t"format" : "uri"\r\n\t\t\t},\r\n\t\t\t"attribute" : {\r\n\t\t\t\t"description" : "The attribute of the schema instance that failed to validate.",\r\n\t\t\t\t"type" : "string"\r\n\t\t\t},\r\n\t\t\t"details" : {\r\n\t\t\t\t"description" : "The value of the schema attribute that failed to validate.",\r\n\t\t\t\t"type" : "any"\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n## API Documentation\r\n\r\nThere are many more APIs available for JSV, too many to detail here. The complete API and documentation can be found in the `docs` directory.\r\n\r\n## Extending Environments\r\n\r\nJSV provides an API for extending available schemas, adding new attributes and validation to currently existing schemas, and creating whole new Environments with unique behaviors. \r\nIn fact, in the [eat-your-own-dog-food](http://en.wikipedia.org/wiki/Eating_your_own_dog_food) approach, all the default JSON Schema environments available are implemented using this API. \r\nDetails and instruction on this feature will be provided at a later date.\r\n\r\n## Installation\r\n\r\nThe preferred method of installation is to download the latest copy from GitHub:\r\n\r\n\tgit clone git://github.com/garycourt/JSV.git\r\n\r\nIf you are using JSV within Node.js, you can quickly install it using:\r\n\r\n\tnpm install JSV\r\n\r\nThen you can reference it within your application using:\r\n\r\n\tvar JSV = require("JSV").JSV;\r\n\r\n## Unit Tests\r\n\r\nOpen `tests/index.html` and `tests/index3.html` in your web browser to run the unit tests.\r\n\r\nCurrently, the unit tests can not be run in Node.js.\r\n\r\n## License\r\n\r\n\tCopyright 2010 Gary Court. All rights reserved.\r\n\t\r\n\tRedistribution and use in source and binary forms, with or without modification, are\r\n\tpermitted provided that the following conditions are met:\r\n\t\r\n\t 1. Redistributions of source code must retain the above copyright notice, this list of\r\n\t conditions and the following disclaimer.\r\n\t\r\n\t 2. Redistributions in binary form must reproduce the above copyright notice, this list\r\n\t of conditions and the following disclaimer in the documentation and/or other materials\r\n\t provided with the distribution.\r\n\t\r\n\tTHIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS\'\' AND ANY EXPRESS OR IMPLIED\r\n\tWARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\r\n\tFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR\r\n\tCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r\n\tCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\n\tSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r\n\tANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r\n\tNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\r\n\tADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\t\r\n\tThe views and conclusions contained in the software and documentation are those of the\r\n\tauthors and should not be interpreted as representing official policies, either expressed\r\n\tor implied, of Gary Court or the JSON Schema specification.',
42969 silly install resolved readmeFilename: 'README.md',
42969 silly install resolved repository: { type: 'git', url: 'git://github.com/garycourt/JSV.git' },
42969 silly install resolved _id: 'JSV@4.0.2',
42969 silly install resolved _shasum: 'd077f6825571f82132f9dffaed587b4029feff57',
42969 silly install resolved _resolved: 'https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz',
42969 silly install resolved _from: 'https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz' } ]
42970 info install nomnom@1.8.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint
42971 info install JSV@4.0.2 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint
42972 info installOne nomnom@1.8.1
42973 verbose installOne of nomnom to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint not in flight; installing
42974 info installOne JSV@4.0.2
42975 verbose installOne of JSV to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint not in flight; installing
42976 verbose lock using /home/lukas/.npm/_locks/nomnom-54563cb354735162.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
42977 verbose lock using /home/lukas/.npm/_locks/JSV-5c5d045e20104879.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42978 silly install write writing nomnom 1.8.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
42979 silly install write writing JSV 4.0.2 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42980 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42981 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV is being purged from base /home/lukas/ffsync/fxa-auth-server
42982 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42983 verbose tar unpack /home/lukas/.npm/JSV/4.0.2/package.tgz
42984 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42985 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV is being purged
42986 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
42987 silly gunzTarPerm modes [ '775', '664' ]
42988 silly gunzTarPerm extractEntry lib/
42989 silly gunzTarPerm modified mode [ 'lib/', 493, 509 ]
42990 silly gunzTarPerm extractEntry lib/json-schema-draft-03.js
42991 silly gunzTarPerm modified mode [ 'lib/json-schema-draft-03.js', 420, 436 ]
42992 silly gunzTarPerm extractEntry lib/uri/
42993 silly gunzTarPerm modified mode [ 'lib/uri/', 493, 509 ]
42994 silly cache afterAdd object-keys@0.4.0
42995 verbose afterAdd /home/lukas/.npm/object-keys/0.4.0/package/package.json not in flight; writing
42996 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
42997 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom is being purged from base /home/lukas/ffsync/fxa-auth-server
42998 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
42999 verbose tar unpack /home/lukas/.npm/nomnom/1.8.1/package.tgz
43000 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43001 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom is being purged
43002 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43003 silly gunzTarPerm modes [ '775', '664' ]
43004 verbose afterAdd /home/lukas/.npm/object-keys/0.4.0/package/package.json written
43005 silly install resolved [ { name: 'object-keys',
43005 silly install resolved version: '0.4.0',
43005 silly install resolved author: { name: 'Jordan Harband' },
43005 silly install resolved description: 'An Object.keys replacement, in case Object.keys is not available. From https://github.com/kriskowal/es5-shim',
43005 silly install resolved license: 'MIT',
43005 silly install resolved main: 'index.js',
43005 silly install resolved scripts: { test: 'node test/index.js' },
43005 silly install resolved repository: { type: 'git', url: 'git://github.com/ljharb/object-keys.git' },
43005 silly install resolved keywords: [ 'Object.keys', 'keys', 'ES5', 'shim' ],
43005 silly install resolved dependencies: {},
43005 silly install resolved devDependencies:
43005 silly install resolved { foreach: '~2.0.3',
43005 silly install resolved is: '~0.2.6',
43005 silly install resolved tape: '~1.0.4',
43005 silly install resolved indexof: '~0.0.1' },
43005 silly install resolved testling: { files: 'test/index.js', browsers: [Object] },
43005 silly install resolved readme: '#object-keys <sup>[![Version Badge][2]][1]</sup>\n\n[![Build Status][3]][4] [![dependency status][5]][6]\n\n[![browser support][7]][8]\n\nAn Object.keys shim. Uses Object.keys if available.\n\n## Example\n\n```js\nvar keys = require(\'object-keys\');\nvar assert = require(\'assert\');\nvar obj = {\n\ta: true,\n\tb: true,\n\tc: true\n};\n\nassert.equal(keys(obj), [\'a\', \'b\', \'c\']);\n```\n\n## Source\nImplementation taken directly from [es5-shim]([9]), with modifications, including from [lodash]([10]).\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/object-keys\n[2]: http://vb.teelaun.ch/ljharb/object-keys.svg\n[3]: https://travis-ci.org/ljharb/object-keys.png\n[4]: https://travis-ci.org/ljharb/object-keys\n[5]: https://david-dm.org/ljharb/object-keys.png\n[6]: https://david-dm.org/ljharb/object-keys\n[7]: https://ci.testling.com/ljharb/object-keys.png\n[8]: https://ci.testling.com/ljharb/object-keys\n[9]: https://github.com/kriskowal/es5-shim/blob/master/es5-shim.js#L542-589\n[10]: https://github.com/bestiejs/lodash\n\n',
43005 silly install resolved readmeFilename: 'README.md',
43005 silly install resolved bugs: { url: 'https://github.com/ljharb/object-keys/issues' },
43005 silly install resolved homepage: 'https://github.com/ljharb/object-keys#readme',
43005 silly install resolved _id: 'object-keys@0.4.0',
43005 silly install resolved _shasum: '28a6aae7428dd2c3a92f3d95f21335dd204e0336',
43005 silly install resolved _resolved: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz',
43005 silly install resolved _from: 'https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz' } ]
43006 info install object-keys@0.4.0 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
43007 info installOne object-keys@0.4.0
43008 verbose installOne of object-keys to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend not in flight; installing
43009 silly gunzTarPerm extractEntry lib/uri/schemes/
43010 silly gunzTarPerm modified mode [ 'lib/uri/schemes/', 493, 509 ]
43011 silly gunzTarPerm extractEntry lib/uri/schemes/urn.js
43012 silly gunzTarPerm modified mode [ 'lib/uri/schemes/urn.js', 420, 436 ]
43013 silly gunzTarPerm extractEntry lib/uri/uri.js
43014 silly gunzTarPerm modified mode [ 'lib/uri/uri.js', 420, 436 ]
43015 verbose lock using /home/lukas/.npm/_locks/object-keys-f8863f88efbf78a3.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43016 silly gunzTarPerm extractEntry lib/jsv.js
43017 silly gunzTarPerm modified mode [ 'lib/jsv.js', 420, 436 ]
43018 silly install write writing object-keys 0.4.0 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43019 silly gunzTarPerm extractEntry lib/environments.js
43020 silly gunzTarPerm modified mode [ 'lib/environments.js', 420, 436 ]
43021 silly gunzTarPerm extractEntry lib/json-schema-draft-02.js
43022 silly gunzTarPerm modified mode [ 'lib/json-schema-draft-02.js', 420, 436 ]
43023 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43024 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys is being purged from base /home/lukas/ffsync/fxa-auth-server
43025 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43026 verbose tar unpack /home/lukas/.npm/object-keys/0.4.0/package.tgz
43027 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43028 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys is being purged
43029 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43030 silly gunzTarPerm modes [ '775', '664' ]
43031 silly gunzTarPerm extractEntry package.json
43032 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43033 silly gunzTarPerm extractEntry lib/json-schema-draft-01.js
43034 silly gunzTarPerm modified mode [ 'lib/json-schema-draft-01.js', 420, 436 ]
43035 silly gunzTarPerm extractEntry package.json
43036 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43037 silly gunzTarPerm extractEntry README.md
43038 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
43039 silly gunzTarPerm extractEntry package.json
43040 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43041 silly gunzTarPerm extractEntry .npmignore
43042 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
43043 silly gunzTarPerm extractEntry README.md
43044 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
43045 silly gunzTarPerm extractEntry .npmignore
43046 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
43047 silly gunzTarPerm extractEntry README.md
43048 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
43049 silly gunzTarPerm extractEntry .project
43050 silly gunzTarPerm modified mode [ '.project', 420, 436 ]
43051 silly gunzTarPerm extractEntry examples/
43052 silly gunzTarPerm modified mode [ 'examples/', 493, 509 ]
43053 silly gunzTarPerm extractEntry examples/index.html
43054 silly gunzTarPerm modified mode [ 'examples/index.html', 420, 436 ]
43055 silly gunzTarPerm extractEntry LICENSE
43056 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
43057 silly gunzTarPerm extractEntry nomnom.js
43058 silly gunzTarPerm modified mode [ 'nomnom.js', 420, 436 ]
43059 silly gunzTarPerm extractEntry docs/
43060 silly gunzTarPerm modified mode [ 'docs/', 493, 509 ]
43061 silly gunzTarPerm extractEntry docs/index.html
43062 silly gunzTarPerm modified mode [ 'docs/index.html', 420, 436 ]
43063 silly gunzTarPerm extractEntry foreach.js
43064 silly gunzTarPerm modified mode [ 'foreach.js', 420, 436 ]
43065 silly gunzTarPerm extractEntry index.js
43066 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43067 silly gunzTarPerm extractEntry test.js
43068 silly gunzTarPerm modified mode [ 'test.js', 420, 436 ]
43069 silly gunzTarPerm extractEntry docs/symbols/
43070 silly gunzTarPerm modified mode [ 'docs/symbols/', 493, 509 ]
43071 silly gunzTarPerm extractEntry docs/symbols/Error.html
43072 silly gunzTarPerm modified mode [ 'docs/symbols/Error.html', 420, 436 ]
43073 silly gunzTarPerm extractEntry docs/symbols/JSONSchema.html
43074 silly gunzTarPerm modified mode [ 'docs/symbols/JSONSchema.html', 420, 436 ]
43075 silly gunzTarPerm extractEntry isArguments.js
43076 silly gunzTarPerm modified mode [ 'isArguments.js', 420, 436 ]
43077 silly gunzTarPerm extractEntry shim.js
43078 silly gunzTarPerm modified mode [ 'shim.js', 420, 436 ]
43079 silly gunzTarPerm extractEntry docs/symbols/InitializationError.html
43080 silly gunzTarPerm modified mode [ 'docs/symbols/InitializationError.html', 420, 436 ]
43081 silly gunzTarPerm extractEntry num-vals-fix.diff
43082 silly gunzTarPerm modified mode [ 'num-vals-fix.diff', 420, 436 ]
43083 silly gunzTarPerm extractEntry test/callback.js
43084 silly gunzTarPerm modified mode [ 'test/callback.js', 420, 436 ]
43085 silly gunzTarPerm extractEntry .travis.yml
43086 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
43087 silly gunzTarPerm extractEntry test/foreach.js
43088 silly gunzTarPerm modified mode [ 'test/foreach.js', 420, 436 ]
43089 silly gunzTarPerm extractEntry docs/symbols/JSONInstance.html
43090 silly gunzTarPerm modified mode [ 'docs/symbols/JSONInstance.html', 420, 436 ]
43091 silly gunzTarPerm extractEntry docs/symbols/JSV.html
43092 silly gunzTarPerm modified mode [ 'docs/symbols/JSV.html', 420, 436 ]
43093 silly gunzTarPerm extractEntry docs/symbols/src/
43094 silly gunzTarPerm modified mode [ 'docs/symbols/src/', 493, 509 ]
43095 silly gunzTarPerm extractEntry docs/symbols/src/jsv.js.html
43096 silly gunzTarPerm modified mode [ 'docs/symbols/src/jsv.js.html', 420, 436 ]
43097 silly gunzTarPerm extractEntry test/commands.js
43098 silly gunzTarPerm modified mode [ 'test/commands.js', 420, 436 ]
43099 silly gunzTarPerm extractEntry test/expected.js
43100 silly gunzTarPerm modified mode [ 'test/expected.js', 420, 436 ]
43101 silly gunzTarPerm extractEntry test/index.js
43102 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
43103 silly gunzTarPerm extractEntry docs/symbols/Report.html
43104 silly gunzTarPerm modified mode [ 'docs/symbols/Report.html', 420, 436 ]
43105 silly gunzTarPerm extractEntry test/matching.js
43106 silly gunzTarPerm modified mode [ 'test/matching.js', 420, 436 ]
43107 silly gunzTarPerm extractEntry test/option.js
43108 silly gunzTarPerm modified mode [ 'test/option.js', 420, 436 ]
43109 silly gunzTarPerm extractEntry test/isArguments.js
43110 silly gunzTarPerm modified mode [ 'test/isArguments.js', 420, 436 ]
43111 silly gunzTarPerm extractEntry test/shim.js
43112 silly gunzTarPerm modified mode [ 'test/shim.js', 420, 436 ]
43113 silly gunzTarPerm extractEntry docs/symbols/_global_.html
43114 silly gunzTarPerm modified mode [ 'docs/symbols/_global_.html', 420, 436 ]
43115 silly gunzTarPerm extractEntry docs/symbols/Environment.html
43116 silly gunzTarPerm modified mode [ 'docs/symbols/Environment.html', 420, 436 ]
43117 silly gunzTarPerm extractEntry docs/symbols/ValidationError.html
43118 silly gunzTarPerm modified mode [ 'docs/symbols/ValidationError.html', 420, 436 ]
43119 silly gunzTarPerm extractEntry test/transform.js
43120 silly gunzTarPerm modified mode [ 'test/transform.js', 420, 436 ]
43121 silly gunzTarPerm extractEntry test/usage.js
43122 silly gunzTarPerm modified mode [ 'test/usage.js', 420, 436 ]
43123 silly gunzTarPerm extractEntry docs/files.html
43124 silly gunzTarPerm modified mode [ 'docs/files.html', 420, 436 ]
43125 silly gunzTarPerm extractEntry test/values.js
43126 silly gunzTarPerm modified mode [ 'test/values.js', 420, 436 ]
43127 silly gunzTarPerm extractEntry jsdoc-toolkit/
43128 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/', 493, 509 ]
43129 silly gunzTarPerm extractEntry jsdoc-toolkit/jsrun.sh
43130 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/jsrun.sh', 420, 436 ]
43131 silly gunzTarPerm extractEntry jsdoc-toolkit/java/
43132 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/', 493, 509 ]
43133 silly gunzTarPerm extractEntry jsdoc-toolkit/java/build.xml
43134 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/build.xml', 420, 436 ]
43135 silly gunzTarPerm extractEntry jsdoc-toolkit/java/src/
43136 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/src/', 493, 509 ]
43137 silly gunzTarPerm extractEntry jsdoc-toolkit/java/src/JsDebugRun.java
43138 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/src/JsDebugRun.java', 420, 436 ]
43139 silly gunzTarPerm extractEntry jsdoc-toolkit/java/src/JsRun.java
43140 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/src/JsRun.java', 420, 436 ]
43141 silly gunzTarPerm extractEntry jsdoc-toolkit/java/build_1.4.xml
43142 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/build_1.4.xml', 420, 436 ]
43143 silly gunzTarPerm extractEntry jsdoc-toolkit/java/classes/
43144 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/classes/', 493, 509 ]
43145 silly gunzTarPerm extractEntry jsdoc-toolkit/java/classes/js.jar
43146 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/java/classes/js.jar', 420, 436 ]
43147 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys/package.json
43148 info preinstall object-keys@0.4.0
43149 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys/package.json
43150 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys/package.json
43151 silly install resolved []
43152 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43153 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43154 info linkStuff object-keys@0.4.0
43155 silly linkStuff object-keys@0.4.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules as its parent node_modules
43156 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/package.json
43157 info preinstall nomnom@1.8.1
43158 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/package.json
43159 verbose linkBins object-keys@0.4.0
43160 verbose linkMans object-keys@0.4.0
43161 verbose rebuildBundles object-keys@0.4.0
43162 info install object-keys@0.4.0
43163 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom',
43163 verbose readDependencies: using existing wrap { underscore:
43163 verbose readDependencies: using existing wrap { version: '1.6.0',
43163 verbose readDependencies: using existing wrap from: 'underscore@>=1.6.0 <1.7.0',
43163 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz' },
43163 verbose readDependencies: using existing wrap chalk:
43163 verbose readDependencies: using existing wrap { version: '0.4.0',
43163 verbose readDependencies: using existing wrap from: 'chalk@>=0.4.0 <0.5.0',
43163 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43163 verbose readDependencies: using existing wrap dependencies: [Object] } } ]
43164 verbose from wrap [ 'underscore',
43164 verbose from wrap { version: '1.6.0',
43164 verbose from wrap from: 'underscore@>=1.6.0 <1.7.0',
43164 verbose from wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz' } ]
43165 verbose from wrap [ 'chalk',
43165 verbose from wrap { version: '0.4.0',
43165 verbose from wrap from: 'chalk@>=0.4.0 <0.5.0',
43165 verbose from wrap resolved: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43165 verbose from wrap dependencies:
43165 verbose from wrap { 'has-color': [Object],
43165 verbose from wrap 'ansi-styles': [Object],
43165 verbose from wrap 'strip-ansi': [Object] } } ]
43166 verbose readDependencies returned deps { underscore: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43166 verbose readDependencies returned deps chalk: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz' }
43167 silly prepareForInstallMany adding underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz from nomnom dependencies
43168 silly prepareForInstallMany adding chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz from nomnom dependencies
43169 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/package.json
43170 info postinstall object-keys@0.4.0
43171 verbose unlock done using /home/lukas/.npm/_locks/object-keys-f8863f88efbf78a3.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend/node_modules/object-keys
43172 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
43173 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
43174 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom',
43174 verbose readDependencies: using existing wrap { underscore:
43174 verbose readDependencies: using existing wrap { version: '1.6.0',
43174 verbose readDependencies: using existing wrap from: 'underscore@>=1.6.0 <1.7.0',
43174 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz' },
43174 verbose readDependencies: using existing wrap chalk:
43174 verbose readDependencies: using existing wrap { version: '0.4.0',
43174 verbose readDependencies: using existing wrap from: 'chalk@>=0.4.0 <0.5.0',
43174 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43174 verbose readDependencies: using existing wrap dependencies: [Object] } } ]
43175 verbose from wrap [ 'underscore',
43175 verbose from wrap { version: '1.6.0',
43175 verbose from wrap from: 'underscore@>=1.6.0 <1.7.0',
43175 verbose from wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz' } ]
43176 verbose from wrap [ 'chalk',
43176 verbose from wrap { version: '0.4.0',
43176 verbose from wrap from: 'chalk@>=0.4.0 <0.5.0',
43176 verbose from wrap resolved: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43176 verbose from wrap dependencies:
43176 verbose from wrap { 'has-color': [Object],
43176 verbose from wrap 'ansi-styles': [Object],
43176 verbose from wrap 'strip-ansi': [Object] } } ]
43177 verbose readDependencies returned deps { underscore: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43177 verbose readDependencies returned deps chalk: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz' }
43178 silly gunzTarPerm extractEntry jsdoc-toolkit/changes.txt
43179 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/changes.txt', 420, 436 ]
43180 silly cache add args [ 'underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43180 silly cache add null ]
43181 verbose cache add spec underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43182 silly cache add args [ 'chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43182 silly cache add null ]
43183 verbose cache add spec chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43184 silly cache add parsed spec Result {
43184 silly cache add raw: 'underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43184 silly cache add scope: null,
43184 silly cache add name: 'underscore',
43184 silly cache add rawSpec: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43184 silly cache add spec: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43184 silly cache add type: 'remote' }
43185 silly mapToRegistry name underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43186 silly mapToRegistry using default registry
43187 silly mapToRegistry registry https://registry.npmjs.org/
43188 silly mapToRegistry uri https://registry.npmjs.org/underscore@https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43189 verbose addRemoteTarball https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz not in flight; adding
43190 verbose addRemoteTarball [ 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43190 verbose addRemoteTarball null ]
43191 silly cache add parsed spec Result {
43191 silly cache add raw: 'chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43191 silly cache add scope: null,
43191 silly cache add name: 'chalk',
43191 silly cache add rawSpec: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43191 silly cache add spec: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43191 silly cache add type: 'remote' }
43192 silly mapToRegistry name chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43193 silly mapToRegistry using default registry
43194 silly mapToRegistry registry https://registry.npmjs.org/
43195 silly mapToRegistry uri https://registry.npmjs.org/chalk@https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43196 verbose addRemoteTarball https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz not in flight; adding
43197 verbose addRemoteTarball [ 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz', null ]
43198 info linkStuff xtend@2.1.2
43199 silly linkStuff xtend@2.1.2 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules as its parent node_modules
43200 info retry fetch attempt 1 at 9:02:50 PM
43201 info attempt registry request try #1 at 9:02:50 PM
43202 http fetch GET https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43203 silly gunzTarPerm extractEntry jsdoc-toolkit/conf/
43204 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/conf/', 493, 509 ]
43205 silly gunzTarPerm extractEntry jsdoc-toolkit/conf/sample.conf
43206 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/conf/sample.conf', 420, 436 ]
43207 silly gunzTarPerm extractEntry jsdoc-toolkit/jsrun.jar
43208 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/jsrun.jar', 420, 436 ]
43209 info retry fetch attempt 1 at 9:02:50 PM
43210 info attempt registry request try #1 at 9:02:50 PM
43211 http fetch GET https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43212 silly gunzTarPerm extractEntry jsdoc-toolkit/jsdebug.jar
43213 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/jsdebug.jar', 420, 436 ]
43214 verbose linkBins xtend@2.1.2
43215 verbose linkMans xtend@2.1.2
43216 verbose rebuildBundles xtend@2.1.2
43217 silly gunzTarPerm extractEntry jsdoc-toolkit/README.txt
43218 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/README.txt', 420, 436 ]
43219 silly gunzTarPerm extractEntry jsdoc-toolkit/app/
43220 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/', 493, 509 ]
43221 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/
43222 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/', 493, 509 ]
43223 verbose rebuildBundles [ 'object-keys' ]
43224 info install xtend@2.1.2
43225 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/frameworkPrototype.js
43226 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/frameworkPrototype.js', 420, 436 ]
43227 info postinstall xtend@2.1.2
43228 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/tagParamConfig.js
43229 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/tagParamConfig.js', 420, 436 ]
43230 verbose unlock done using /home/lukas/.npm/_locks/xtend-0c8555732fbc010c.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket/node_modules/xtend
43231 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
43232 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
43233 info linkStuff blanket@1.1.6
43234 silly linkStuff blanket@1.1.6 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules as its parent node_modules
43235 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/functionCall.js
43236 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/functionCall.js', 420, 436 ]
43237 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/publishSrcHilite.js
43238 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/publishSrcHilite.js', 420, 436 ]
43239 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/symbolLink.js
43240 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/symbolLink.js', 420, 436 ]
43241 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/commentSrcJson.js
43242 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/commentSrcJson.js', 420, 436 ]
43243 silly gunzTarPerm extractEntry jsdoc-toolkit/app/plugins/tagSynonyms.js
43244 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/plugins/tagSynonyms.js', 420, 436 ]
43245 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/
43246 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/', 493, 509 ]
43247 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC.js
43248 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC.js', 420, 436 ]
43249 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/
43250 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/', 493, 509 ]
43251 verbose linkBins blanket@1.1.6
43252 verbose linkMans blanket@1.1.6
43253 verbose rebuildBundles blanket@1.1.6
43254 verbose rebuildBundles [ '.bin', 'esprima', 'falafel', 'xtend' ]
43255 info install blanket@1.1.6
43256 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Walker.js
43257 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Walker.js', 420, 436 ]
43258 info postinstall blanket@1.1.6
43259 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Parser.js
43260 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Parser.js', 420, 436 ]
43261 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/DocComment.js
43262 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/DocComment.js', 420, 436 ]
43263 verbose unlock done using /home/lukas/.npm/_locks/blanket-4befede6af6675a8.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass/node_modules/blanket
43264 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass
43265 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass
43266 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js
43267 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js', 420, 436 ]
43268 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/PluginManager.js
43269 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/PluginManager.js', 420, 436 ]
43270 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Token.js
43271 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Token.js', 420, 436 ]
43272 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Util.js
43273 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Util.js', 420, 436 ]
43274 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/TextStream.js
43275 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/TextStream.js', 420, 436 ]
43276 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Lang.js
43277 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Lang.js', 420, 436 ]
43278 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/Symbol.js
43279 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/Symbol.js', 420, 436 ]
43280 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/DocTag.js
43281 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/DocTag.js', 420, 436 ]
43282 info linkStuff ass@1.0.0
43283 silly linkStuff ass@1.0.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules as its parent node_modules
43284 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/JsPlate.js
43285 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/JsPlate.js', 420, 436 ]
43286 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/TokenReader.js
43287 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/TokenReader.js', 420, 436 ]
43288 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/JsDoc.js
43289 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/JsDoc.js', 420, 436 ]
43290 http fetch 200 https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43291 silly gunzTarPerm extractEntry jsdoc-toolkit/app/lib/JSDOC/TokenStream.js
43292 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/lib/JSDOC/TokenStream.js', 420, 436 ]
43293 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/
43294 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/', 493, 509 ]
43295 silly fetchAndShaCheck shasum 5199a3ddcd0c1efe23bc08c1b027b06176e0c64f
43296 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/chalk/-/chalk-0.4.0.tgz not in flight; adding
43297 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43298 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/chalk/-/chalk-0.4.0.tgz
43299 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-5dfd65dbd575
43300 silly gentlyRm /tmp/npm-30115-af71656d/unpack-5dfd65dbd575 is being purged
43301 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-5dfd65dbd575
43302 verbose linkBins ass@1.0.0
43303 verbose linkMans ass@1.0.0
43304 verbose rebuildBundles ass@1.0.0
43305 silly gunzTarPerm modes [ '775', '664' ]
43306 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/XMLDOC/
43307 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/XMLDOC/', 493, 509 ]
43308 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js
43309 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js', 420, 436 ]
43310 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js
43311 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js', 420, 436 ]
43312 http fetch 200 https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43313 silly gunzTarPerm extractEntry package.json
43314 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43315 verbose rebuildBundles [ 'async', 'blanket', 'cheerio', 'temp' ]
43316 info install ass@1.0.0
43317 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js
43318 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js', 420, 436 ]
43319 info postinstall ass@1.0.0
43320 silly gunzTarPerm extractEntry index.js
43321 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43322 silly gunzTarPerm extractEntry readme.md
43323 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43324 verbose unlock done using /home/lukas/.npm/_locks/ass-e641013d479719e8.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/ass
43325 silly fetchAndShaCheck shasum 8b38b10cacdef63337b8b24e4ff86d45aea529a8
43326 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/underscore/-/underscore-1.6.0.tgz not in flight; adding
43327 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43328 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
43329 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-b81eba3524c1
43330 silly gentlyRm /tmp/npm-30115-af71656d/unpack-b81eba3524c1 is being purged
43331 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-b81eba3524c1
43332 silly gunzTarPerm modes [ '775', '664' ]
43333 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/XMLDOC.js
43334 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/XMLDOC.js', 420, 436 ]
43335 silly gunzTarPerm extractEntry jsdoc-toolkit/app/handlers/FOODOC.js
43336 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/handlers/FOODOC.js', 420, 436 ]
43337 silly gunzTarPerm extractEntry package.json
43338 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43339 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test.js
43340 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test.js', 420, 436 ]
43341 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/
43342 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/', 493, 509 ]
43343 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Testrun.js
43344 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Testrun.js', 420, 436 ]
43345 silly gunzTarPerm extractEntry README.md
43346 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
43347 silly gunzTarPerm extractEntry LICENSE
43348 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
43349 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Hash.js
43350 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Hash.js', 420, 436 ]
43351 silly gunzTarPerm extractEntry underscore-min.js
43352 silly gunzTarPerm modified mode [ 'underscore-min.js', 420, 436 ]
43353 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Link.js
43354 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Link.js', 420, 436 ]
43355 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Namespace.js
43356 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Namespace.js', 420, 436 ]
43357 silly gunzTarPerm extractEntry underscore.js
43358 silly gunzTarPerm modified mode [ 'underscore.js', 420, 436 ]
43359 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Reflection.js
43360 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Reflection.js', 420, 436 ]
43361 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Dumper.js
43362 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Dumper.js', 420, 436 ]
43363 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/String.js
43364 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/String.js', 420, 436 ]
43365 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Chain.js
43366 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Chain.js', 420, 436 ]
43367 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame/Opt.js
43368 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame/Opt.js', 420, 436 ]
43369 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/
43370 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/', 493, 509 ]
43371 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/encoding_other.js
43372 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/encoding_other.js', 420, 436 ]
43373 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/prototype_oblit_constructor.js
43374 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/prototype_oblit_constructor.js',
43374 silly gunzTarPerm 420,
43374 silly gunzTarPerm 436 ]
43375 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/memberof.js
43376 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/memberof.js', 420, 436 ]
43377 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/memberof3.js
43378 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/memberof3.js', 420, 436 ]
43379 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/scripts/
43380 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/scripts/', 493, 509 ]
43381 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/scripts/notcode.txt
43382 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/scripts/notcode.txt', 420, 436 ]
43383 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/scripts/code.js
43384 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/scripts/code.js', 420, 436 ]
43385 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/prototype_nested.js
43386 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/prototype_nested.js', 420, 436 ]
43387 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/static_this.js
43388 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/static_this.js', 420, 436 ]
43389 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/functions_anon.js
43390 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/functions_anon.js', 420, 436 ]
43391 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/jsdoc_test.js
43392 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/jsdoc_test.js', 420, 436 ]
43393 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/prototype_oblit.js
43394 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/prototype_oblit.js', 420, 436 ]
43395 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/param_inline.js
43396 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/param_inline.js', 420, 436 ]
43397 silly cache afterAdd chalk@0.4.0
43398 verbose afterAdd /home/lukas/.npm/chalk/0.4.0/package/package.json not in flight; writing
43399 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/inner.js
43400 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/inner.js', 420, 436 ]
43401 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/public.js
43402 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/public.js', 420, 436 ]
43403 verbose afterAdd /home/lukas/.npm/chalk/0.4.0/package/package.json written
43404 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/namespace_nested.js
43405 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/namespace_nested.js', 420, 436 ]
43406 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/module.js
43407 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/module.js', 420, 436 ]
43408 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/oblit_anon.js
43409 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/oblit_anon.js', 420, 436 ]
43410 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/name.js
43411 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/name.js', 420, 436 ]
43412 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/event.js
43413 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/event.js', 420, 436 ]
43414 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/overview.js
43415 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/overview.js', 420, 436 ]
43416 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/global.js
43417 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/global.js', 420, 436 ]
43418 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/prototype.js
43419 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/prototype.js', 420, 436 ]
43420 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/memberof_constructor.js
43421 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/memberof_constructor.js', 420, 436 ]
43422 silly cache afterAdd underscore@1.6.0
43423 verbose afterAdd /home/lukas/.npm/underscore/1.6.0/package/package.json not in flight; writing
43424 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/borrows.js
43425 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/borrows.js', 420, 436 ]
43426 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/shared.js
43427 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/shared.js', 420, 436 ]
43428 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/addon.js
43429 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/addon.js', 420, 436 ]
43430 verbose afterAdd /home/lukas/.npm/underscore/1.6.0/package/package.json written
43431 silly install resolved [ { name: 'chalk',
43431 silly install resolved version: '0.4.0',
43431 silly install resolved description: 'Terminal string styling done right. Created because the `colors` module does some really horrible things.',
43431 silly install resolved license: 'MIT',
43431 silly install resolved repository:
43431 silly install resolved { type: 'git',
43431 silly install resolved url: 'git+https://github.com/sindresorhus/chalk.git' },
43431 silly install resolved author:
43431 silly install resolved { name: 'Sindre Sorhus',
43431 silly install resolved email: 'sindresorhus@gmail.com',
43431 silly install resolved url: 'http://sindresorhus.com' },
43431 silly install resolved engines: { node: '>=0.8.0' },
43431 silly install resolved scripts: { test: 'mocha' },
43431 silly install resolved files: [ 'index.js' ],
43431 silly install resolved keywords:
43431 silly install resolved [ 'color',
43431 silly install resolved 'colour',
43431 silly install resolved 'colors',
43431 silly install resolved 'terminal',
43431 silly install resolved 'console',
43431 silly install resolved 'cli',
43431 silly install resolved 'string',
43431 silly install resolved 'ansi',
43431 silly install resolved 'styles',
43431 silly install resolved 'tty',
43431 silly install resolved 'formatting',
43431 silly install resolved 'rgb',
43431 silly install resolved '256',
43431 silly install resolved 'shell',
43431 silly install resolved 'xterm',
43431 silly install resolved 'log',
43431 silly install resolved 'logging',
43431 silly install resolved 'command-line',
43431 silly install resolved 'text' ],
43431 silly install resolved dependencies:
43431 silly install resolved { 'has-color': '~0.1.0',
43431 silly install resolved 'ansi-styles': '~1.0.0',
43431 silly install resolved 'strip-ansi': '~0.1.0' },
43431 silly install resolved devDependencies: { mocha: '~1.x' },
43431 silly install resolved readme: '# <img width="250" src="logo.png" alt="chalk">\n\n> Terminal string styling done right\n\n[![Build Status](https://secure.travis-ci.org/sindresorhus/chalk.png?branch=master)](http://travis-ci.org/sindresorhus/chalk)\n\n[colors.js](https://github.com/Marak/colors.js) is currently the most popular string styling module, but it has serious deficiencies like extending String.prototype which causes all kinds of [problems](https://github.com/yeoman/yo/issues/68). Although there are other ones, they either do too much or not enough.\n\n**Chalk is a clean and focused alternative.**\n\n![screenshot](screenshot.png)\n\n\n## Why\n\n- **Doesn\'t extend String.prototype**\n- Expressive API\n- Clean and focused\n- Auto-detects color support\n- Actively maintained\n- [Used by 150+ modules](https://npmjs.org/browse/depended/chalk)\n\n\n## Install\n\nInstall with [npm](https://npmjs.org/package/chalk): `npm install --save chalk`\n\n\n## Example\n\nChalk comes with an easy to use composable API where you just chain and nest the styles you want.\n\n```js\nvar chalk = require(\'chalk\');\n\n// style a string\nconsole.log( chalk.blue(\'Hello world!\') );\n\n// combine styled and normal strings\nconsole.log( chalk.blue(\'Hello\'), \'World\' + chalk.red(\'!\') );\n\n// compose multiple styles using the chainable API\nconsole.log( chalk.blue.bgRed.bold(\'Hello world!\') );\n\n// nest styles\nconsole.log( chalk.red(\'Hello\', chalk.underline.bgBlue(\'world\') + \'!\') );\n\n// pass in multiple arguments\nconsole.log( chalk.blue(\'Hello\', \'World!\', \'Foo\', \'bar\', \'biz\', \'baz\') );\n```\n\nYou can easily define your own themes.\n\n```js\nvar chalk = require(\'chalk\');\nvar error = chalk.bold.red;\nconsole.log(error(\'Error!\'));\n```\n\n\n## API\n\n### chalk.`<style>[.<style>...](string, [string...])`\n\nExample: `chalk.red.bold.underline(\'Hello\', \'world\');`\n\nChain [styles](#styles) and call the last one as a method with a string argument. Order doesn\'t matter.\n\nMultiple arguments will be separated by space.\n\n### chalk.enabled\n\nColor support is automatically detected, but you can override it.\n\n### chalk.supportsColor\n\nDetect whether the terminal [supports color](https://github.com/sindresorhus/has-color).\n\nCan be overridden by the user with the flags `--color` and `--no-color`.\n\nUsed internally and handled for you, but exposed for convenience.\n\n### chalk.styles\n\nExposes the styles as [ANSI escape codes](https://github.com/sindresorhus/ansi-styles).\n\nGenerally not useful, but you might need just the `.open` or `.close` escape code if you\'re mixing externally styled strings with yours.\n\n```js\nvar chalk = require(\'chalk\');\n\nconsole.log(chalk.styles.red);\n//=> {open: \'\\x1b[31m\', close: \'\\x1b[39m\'}\n\nconsole.log(chalk.styles.red.open + \'Hello\' + chalk.styles.red.close);\n```\n\n### chalk.stripColor(string)\n\n[Strip color](https://github.com/sindresorhus/strip-ansi) from a string.\n\nCan be useful in combination with `.supportsColor` to strip color on externally styled text when it\'s not supported.\n\nExample:\n\n```js\nvar chalk = require(\'chalk\');\nvar styledString = fromExternal();\n\nif (!chalk.supportsColor) {\n\tchalk.stripColor(styledString);\n}\n```\n\n\n## Styles\n\n### General\n\n- reset\n- bold\n- italic\n- underline\n- inverse\n- strikethrough\n\n### Text colors\n\n- black\n- red\n- green\n- yellow\n- blue\n- magenta\n- cyan\n- white\n- gray\n\n### Background colors\n\n- bgBlack\n- bgRed\n- bgGreen\n- bgYellow\n- bgBlue\n- bgMagenta\n- bgCyan\n- bgWhite\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n\n\n-\n\n[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/sindresorhus/chalk/trend.png)](https://bitdeli.com/free "Bitdeli Badge")\n',
43431 silly install resolved readmeFilename: 'readme.md',
43431 silly install resolved bugs: { url: 'https://github.com/sindresorhus/chalk/issues' },
43431 silly install resolved homepage: 'https://github.com/sindresorhus/chalk#readme',
43431 silly install resolved _id: 'chalk@0.4.0',
43431 silly install resolved _shasum: '5199a3ddcd0c1efe23bc08c1b027b06176e0c64f',
43431 silly install resolved _resolved: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz',
43431 silly install resolved _from: 'https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz' },
43431 silly install resolved { name: 'underscore',
43431 silly install resolved description: 'JavaScript\'s functional programming helper library.',
43431 silly install resolved homepage: 'http://underscorejs.org',
43431 silly install resolved keywords: [ 'util', 'functional', 'server', 'client', 'browser' ],
43431 silly install resolved author: { name: 'Jeremy Ashkenas', email: 'jeremy@documentcloud.org' },
43431 silly install resolved repository:
43431 silly install resolved { type: 'git',
43431 silly install resolved url: 'git://github.com/jashkenas/underscore.git' },
43431 silly install resolved main: 'underscore.js',
43431 silly install resolved version: '1.6.0',
43431 silly install resolved devDependencies: { docco: '0.6.x', phantomjs: '1.9.0-1', 'uglify-js': '2.4.x' },
43431 silly install resolved scripts:
43431 silly install resolved { test: 'phantomjs test/vendor/runner.js test/index.html?noglobals=true',
43431 silly install resolved build: 'uglifyjs underscore.js -c "evaluate=false" --comments "/ .*/" -m --source-map underscore-min.map -o underscore-min.js',
43431 silly install resolved doc: 'docco underscore.js' },
43431 silly install resolved licenses: [ [Object] ],
43431 silly install resolved files: [ 'underscore.js', 'underscore-min.js', 'LICENSE' ],
43431 silly install resolved readme: ' __\n /\\ \\ __\n __ __ ___ \\_\\ \\ __ _ __ ____ ___ ___ _ __ __ /\\_\\ ____\n /\\ \\/\\ \\ /\' _ `\\ /\'_ \\ /\'__`\\/\\ __\\/ ,__\\ / ___\\ / __`\\/\\ __\\/\'__`\\ \\/\\ \\ /\',__\\\n \\ \\ \\_\\ \\/\\ \\/\\ \\/\\ \\ \\ \\/\\ __/\\ \\ \\//\\__, `\\/\\ \\__//\\ \\ \\ \\ \\ \\//\\ __/ __ \\ \\ \\/\\__, `\\\n \\ \\____/\\ \\_\\ \\_\\ \\___,_\\ \\____\\\\ \\_\\\\/\\____/\\ \\____\\ \\____/\\ \\_\\\\ \\____\\/\\_\\ _\\ \\ \\/\\____/\n \\/___/ \\/_/\\/_/\\/__,_ /\\/____/ \\/_/ \\/___/ \\/____/\\/___/ \\/_/ \\/____/\\/_//\\ \\_\\ \\/___/\n \\ \\____/\n \\/___/\n\nUnderscore.js is a utility-belt library for JavaScript that provides\nsupport for the usual functional suspects (each, map, reduce, filter...)\nwithout extending any core JavaScript objects.\n\nFor Docs, License, Tests, and pre-packed downloads, see:\nhttp://underscorejs.org\n\nUnderscore is an open-sourced component of DocumentCloud:\nhttps://github.com/documentcloud\n\nMany thanks to our contributors:\nhttps://github.com/jashkenas/underscore/contributors\n',
43431 silly install resolved readmeFilename: 'README.md',
43431 silly install resolved bugs: { url: 'https://github.com/jashkenas/underscore/issues' },
43431 silly install resolved _id: 'underscore@1.6.0',
43431 silly install resolved _shasum: '8b38b10cacdef63337b8b24e4ff86d45aea529a8',
43431 silly install resolved _resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz',
43431 silly install resolved _from: 'https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz' } ]
43432 info install chalk@0.4.0 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43433 info install underscore@1.6.0 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43434 info installOne chalk@0.4.0
43435 verbose installOne of chalk to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom not in flight; installing
43436 info installOne underscore@1.6.0
43437 verbose installOne of underscore to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom not in flight; installing
43438 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/augments.js
43439 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/augments.js', 420, 436 ]
43440 verbose lock using /home/lukas/.npm/_locks/underscore-1e196b37adfeb73a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43441 verbose lock using /home/lukas/.npm/_locks/chalk-c2480d02f7565f30.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43442 silly install write writing underscore 1.6.0 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43443 silly install write writing chalk 0.4.0 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43444 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/nocode.js
43445 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/nocode.js', 420, 436 ]
43446 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/shortcuts.js
43447 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/shortcuts.js', 420, 436 ]
43448 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43449 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/lend.js
43450 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/lend.js', 420, 436 ]
43451 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43452 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore is being purged from base /home/lukas/ffsync/fxa-auth-server
43453 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43454 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/augments2.js
43455 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/augments2.js', 420, 436 ]
43456 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk is being purged from base /home/lukas/ffsync/fxa-auth-server
43457 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43458 verbose tar unpack /home/lukas/.npm/underscore/1.6.0/package.tgz
43459 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43460 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore is being purged
43461 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43462 verbose tar unpack /home/lukas/.npm/chalk/0.4.0/package.tgz
43463 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43464 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk is being purged
43465 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43466 silly gunzTarPerm modes [ '775', '664' ]
43467 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/tosource.js
43468 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/tosource.js', 420, 436 ]
43469 silly gunzTarPerm modes [ '775', '664' ]
43470 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/config.js
43471 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/config.js', 420, 436 ]
43472 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/anon_inner.js
43473 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/anon_inner.js', 420, 436 ]
43474 silly gunzTarPerm extractEntry package.json
43475 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43476 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/constructs.js
43477 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/constructs.js', 420, 436 ]
43478 silly gunzTarPerm extractEntry package.json
43479 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43480 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/synonyms.js
43481 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/synonyms.js', 420, 436 ]
43482 silly gunzTarPerm extractEntry README.md
43483 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
43484 silly gunzTarPerm extractEntry LICENSE
43485 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
43486 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/encoding.js
43487 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/encoding.js', 420, 436 ]
43488 silly gunzTarPerm extractEntry index.js
43489 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43490 silly gunzTarPerm extractEntry readme.md
43491 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43492 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/variable_redefine.js
43493 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/variable_redefine.js', 420, 436 ]
43494 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/shared2.js
43495 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/shared2.js', 420, 436 ]
43496 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/borrows2.js
43497 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/borrows2.js', 420, 436 ]
43498 silly gunzTarPerm extractEntry underscore-min.js
43499 silly gunzTarPerm modified mode [ 'underscore-min.js', 420, 436 ]
43500 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/multi_methods.js
43501 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/multi_methods.js', 420, 436 ]
43502 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/memberof2.js
43503 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/memberof2.js', 420, 436 ]
43504 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/globals.js
43505 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/globals.js', 420, 436 ]
43506 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/ignore.js
43507 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/ignore.js', 420, 436 ]
43508 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/exports.js
43509 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/exports.js', 420, 436 ]
43510 silly gunzTarPerm extractEntry underscore.js
43511 silly gunzTarPerm modified mode [ 'underscore.js', 420, 436 ]
43512 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/params_optional.js
43513 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/params_optional.js', 420, 436 ]
43514 silly gunzTarPerm extractEntry jsdoc-toolkit/app/test/functions_nested.js
43515 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/test/functions_nested.js', 420, 436 ]
43516 silly gunzTarPerm extractEntry jsdoc-toolkit/app/frame.js
43517 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/frame.js', 420, 436 ]
43518 silly gunzTarPerm extractEntry jsdoc-toolkit/app/run.js
43519 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/run.js', 420, 436 ]
43520 silly gunzTarPerm extractEntry jsdoc-toolkit/app/main.js
43521 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/main.js', 420, 436 ]
43522 silly gunzTarPerm extractEntry jsdoc-toolkit/app/t/
43523 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/t/', 493, 509 ]
43524 silly gunzTarPerm extractEntry jsdoc-toolkit/app/t/runner.js
43525 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/t/runner.js', 420, 436 ]
43526 silly gunzTarPerm extractEntry jsdoc-toolkit/app/t/TestDoc.js
43527 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/app/t/TestDoc.js', 420, 436 ]
43528 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/package.json
43529 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/
43530 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/', 493, 509 ]
43531 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/
43532 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/', 493, 509 ]
43533 info preinstall chalk@0.4.0
43534 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/allfiles.tmpl
43535 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/allfiles.tmpl', 420, 436 ]
43536 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/package.json
43537 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/static/
43538 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/static/', 493, 509 ]
43539 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/static/index.html
43540 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/static/index.html', 420, 436 ]
43541 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/static/header.html
43542 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/static/header.html', 420, 436 ]
43543 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk',
43543 verbose readDependencies: using existing wrap { 'has-color':
43543 verbose readDependencies: using existing wrap { version: '0.1.7',
43543 verbose readDependencies: using existing wrap from: 'has-color@>=0.1.0 <0.2.0',
43543 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz' },
43543 verbose readDependencies: using existing wrap 'ansi-styles':
43543 verbose readDependencies: using existing wrap { version: '1.0.0',
43543 verbose readDependencies: using existing wrap from: 'ansi-styles@>=1.0.0 <1.1.0',
43543 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz' },
43543 verbose readDependencies: using existing wrap 'strip-ansi':
43543 verbose readDependencies: using existing wrap { version: '0.1.1',
43543 verbose readDependencies: using existing wrap from: 'strip-ansi@>=0.1.0 <0.2.0',
43543 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' } } ]
43544 verbose from wrap [ 'has-color',
43544 verbose from wrap { version: '0.1.7',
43544 verbose from wrap from: 'has-color@>=0.1.0 <0.2.0',
43544 verbose from wrap resolved: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz' } ]
43545 verbose from wrap [ 'ansi-styles',
43545 verbose from wrap { version: '1.0.0',
43545 verbose from wrap from: 'ansi-styles@>=1.0.0 <1.1.0',
43545 verbose from wrap resolved: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz' } ]
43546 verbose from wrap [ 'strip-ansi',
43546 verbose from wrap { version: '0.1.1',
43546 verbose from wrap from: 'strip-ansi@>=0.1.0 <0.2.0',
43546 verbose from wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' } ]
43547 verbose readDependencies returned deps { 'has-color': 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43547 verbose readDependencies returned deps 'ansi-styles': 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43547 verbose readDependencies returned deps 'strip-ansi': 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' }
43548 silly prepareForInstallMany adding has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz from chalk dependencies
43549 silly prepareForInstallMany adding ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz from chalk dependencies
43550 silly prepareForInstallMany adding strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz from chalk dependencies
43551 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/package.json
43552 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/static/default.css
43553 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/static/default.css', 420, 436 ]
43554 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/symbol.tmpl
43555 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/symbol.tmpl', 420, 436 ]
43556 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/allclasses.tmpl
43557 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/allclasses.tmpl', 420, 436 ]
43558 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk',
43558 verbose readDependencies: using existing wrap { 'has-color':
43558 verbose readDependencies: using existing wrap { version: '0.1.7',
43558 verbose readDependencies: using existing wrap from: 'has-color@>=0.1.0 <0.2.0',
43558 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz' },
43558 verbose readDependencies: using existing wrap 'ansi-styles':
43558 verbose readDependencies: using existing wrap { version: '1.0.0',
43558 verbose readDependencies: using existing wrap from: 'ansi-styles@>=1.0.0 <1.1.0',
43558 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz' },
43558 verbose readDependencies: using existing wrap 'strip-ansi':
43558 verbose readDependencies: using existing wrap { version: '0.1.1',
43558 verbose readDependencies: using existing wrap from: 'strip-ansi@>=0.1.0 <0.2.0',
43558 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' } } ]
43559 verbose from wrap [ 'has-color',
43559 verbose from wrap { version: '0.1.7',
43559 verbose from wrap from: 'has-color@>=0.1.0 <0.2.0',
43559 verbose from wrap resolved: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz' } ]
43560 verbose from wrap [ 'ansi-styles',
43560 verbose from wrap { version: '1.0.0',
43560 verbose from wrap from: 'ansi-styles@>=1.0.0 <1.1.0',
43560 verbose from wrap resolved: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz' } ]
43561 verbose from wrap [ 'strip-ansi',
43561 verbose from wrap { version: '0.1.1',
43561 verbose from wrap from: 'strip-ansi@>=0.1.0 <0.2.0',
43561 verbose from wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' } ]
43562 verbose readDependencies returned deps { 'has-color': 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43562 verbose readDependencies returned deps 'ansi-styles': 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43562 verbose readDependencies returned deps 'strip-ansi': 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' }
43563 silly cache add args [ 'has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43563 silly cache add null ]
43564 verbose cache add spec has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43565 silly cache add args [ 'ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43565 silly cache add null ]
43566 verbose cache add spec ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43567 silly cache add args [ 'strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43567 silly cache add null ]
43568 verbose cache add spec strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43569 silly cache add parsed spec Result {
43569 silly cache add raw: 'has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43569 silly cache add scope: null,
43569 silly cache add name: 'has-color',
43569 silly cache add rawSpec: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43569 silly cache add spec: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43569 silly cache add type: 'remote' }
43570 silly mapToRegistry name has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43571 silly mapToRegistry using default registry
43572 silly mapToRegistry registry https://registry.npmjs.org/
43573 silly mapToRegistry uri https://registry.npmjs.org/has-color@https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43574 verbose addRemoteTarball https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz not in flight; adding
43575 verbose addRemoteTarball [ 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43575 verbose addRemoteTarball null ]
43576 silly cache add parsed spec Result {
43576 silly cache add raw: 'ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43576 silly cache add scope: null,
43576 silly cache add name: 'ansi-styles',
43576 silly cache add rawSpec: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43576 silly cache add spec: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43576 silly cache add type: 'remote' }
43577 silly mapToRegistry name ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43578 silly mapToRegistry using default registry
43579 silly mapToRegistry registry https://registry.npmjs.org/
43580 silly mapToRegistry uri https://registry.npmjs.org/ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43581 verbose addRemoteTarball https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz not in flight; adding
43582 verbose addRemoteTarball [ 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43582 verbose addRemoteTarball null ]
43583 silly cache add parsed spec Result {
43583 silly cache add raw: 'strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43583 silly cache add scope: null,
43583 silly cache add name: 'strip-ansi',
43583 silly cache add rawSpec: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43583 silly cache add spec: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43583 silly cache add type: 'remote' }
43584 silly mapToRegistry name strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43585 silly mapToRegistry using default registry
43586 silly mapToRegistry registry https://registry.npmjs.org/
43587 silly mapToRegistry uri https://registry.npmjs.org/strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43588 verbose addRemoteTarball https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz not in flight; adding
43589 verbose addRemoteTarball [ 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43589 verbose addRemoteTarball null ]
43590 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/publish.js
43591 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/publish.js', 420, 436 ]
43592 info retry fetch attempt 1 at 9:02:50 PM
43593 info attempt registry request try #1 at 9:02:50 PM
43594 http fetch GET https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43595 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore/package.json
43596 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/class.tmpl
43597 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/class.tmpl', 420, 436 ]
43598 info retry fetch attempt 1 at 9:02:50 PM
43599 info attempt registry request try #1 at 9:02:50 PM
43600 http fetch GET https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43601 info retry fetch attempt 1 at 9:02:50 PM
43602 info attempt registry request try #1 at 9:02:50 PM
43603 http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43604 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/jsdoc/index.tmpl
43605 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/jsdoc/index.tmpl', 420, 436 ]
43606 info preinstall underscore@1.6.0
43607 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/
43608 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/', 493, 509 ]
43609 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore/package.json
43610 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/allfiles.tmpl
43611 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/allfiles.tmpl', 420, 436 ]
43612 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/static/
43613 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/static/', 493, 509 ]
43614 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore/package.json
43615 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/static/index.html
43616 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/static/index.html',
43616 silly gunzTarPerm 420,
43616 silly gunzTarPerm 436 ]
43617 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/symbol.tmpl
43618 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/symbol.tmpl', 420, 436 ]
43619 silly install resolved []
43620 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43621 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43622 info linkStuff underscore@1.6.0
43623 silly linkStuff underscore@1.6.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules as its parent node_modules
43624 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/allclasses.tmpl
43625 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/allclasses.tmpl', 420, 436 ]
43626 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/publish.js
43627 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/publish.js', 420, 436 ]
43628 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/class.tmpl
43629 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/class.tmpl', 420, 436 ]
43630 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/
43631 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/', 493, 509 ]
43632 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/body_noise.gif
43633 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/body_noise.gif',
43633 silly gunzTarPerm 420,
43633 silly gunzTarPerm 436 ]
43634 verbose linkBins underscore@1.6.0
43635 verbose linkMans underscore@1.6.0
43636 verbose rebuildBundles underscore@1.6.0
43637 info install underscore@1.6.0
43638 info postinstall underscore@1.6.0
43639 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/title_bullet.gif
43640 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/title_bullet.gif',
43640 silly gunzTarPerm 420,
43640 silly gunzTarPerm 436 ]
43641 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/box_noise.gif
43642 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/box_noise.gif',
43642 silly gunzTarPerm 420,
43642 silly gunzTarPerm 436 ]
43643 verbose unlock done using /home/lukas/.npm/_locks/underscore-1e196b37adfeb73a.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/underscore
43644 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/body_wrapper_noise.gif
43645 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/body_wrapper_noise.gif',
43645 silly gunzTarPerm 420,
43645 silly gunzTarPerm 436 ]
43646 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/blue_label.gif
43647 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/blue_label.gif',
43647 silly gunzTarPerm 420,
43647 silly gunzTarPerm 436 ]
43648 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/box_wrapper_noise.gif
43649 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/box_wrapper_noise.gif',
43649 silly gunzTarPerm 420,
43649 silly gunzTarPerm 436 ]
43650 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/stylesheets/default.css
43651 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/stylesheets/default.css',
43651 silly gunzTarPerm 420,
43651 silly gunzTarPerm 436 ]
43652 http fetch 200 https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43653 http fetch 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43654 http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43655 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/.npmignore
43656 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/.npmignore', 420, 436 ]
43657 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/bluelabel/index.tmpl
43658 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/bluelabel/index.tmpl', 420, 436 ]
43659 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/
43660 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/', 493, 509 ]
43661 silly fetchAndShaCheck shasum 67144a5260c34fc3cca677d041daf52fe7b78b2f
43662 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/has-color/-/has-color-0.1.7.tgz not in flight; adding
43663 silly fetchAndShaCheck shasum cb102df1c56f5123eab8b67cd7b98027a0279178
43664 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz not in flight; adding
43665 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43666 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/has-color/-/has-color-0.1.7.tgz
43667 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-57616119ab13
43668 silly gentlyRm /tmp/npm-30115-af71656d/unpack-57616119ab13 is being purged
43669 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-57616119ab13
43670 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43671 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz
43672 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-3727cdac3dc3
43673 silly gentlyRm /tmp/npm-30115-af71656d/unpack-3727cdac3dc3 is being purged
43674 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-3727cdac3dc3
43675 silly gunzTarPerm modes [ '775', '664' ]
43676 silly gunzTarPerm modes [ '775', '664' ]
43677 silly fetchAndShaCheck shasum 39e8a98d044d150660abe4a6808acf70bb7bc991
43678 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz not in flight; adding
43679 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43680 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz
43681 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-027677b85014
43682 silly gentlyRm /tmp/npm-30115-af71656d/unpack-027677b85014 is being purged
43683 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-027677b85014
43684 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/allfiles.tmpl
43685 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/allfiles.tmpl', 420, 436 ]
43686 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/static/
43687 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/static/', 493, 509 ]
43688 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/static/index.html
43689 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/static/index.html',
43689 silly gunzTarPerm 420,
43689 silly gunzTarPerm 436 ]
43690 silly gunzTarPerm modes [ '775', '664' ]
43691 silly gunzTarPerm extractEntry package.json
43692 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43693 silly gunzTarPerm extractEntry package.json
43694 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43695 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/static/header.html
43696 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/static/header.html',
43696 silly gunzTarPerm 420,
43696 silly gunzTarPerm 436 ]
43697 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/symbol.tmpl
43698 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/symbol.tmpl', 420, 436 ]
43699 silly gunzTarPerm extractEntry index.js
43700 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43701 silly gunzTarPerm extractEntry readme.md
43702 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43703 silly gunzTarPerm extractEntry ansi-styles.js
43704 silly gunzTarPerm modified mode [ 'ansi-styles.js', 420, 436 ]
43705 silly gunzTarPerm extractEntry readme.md
43706 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43707 silly gunzTarPerm extractEntry package.json
43708 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43709 silly gunzTarPerm extractEntry cli.js
43710 silly gunzTarPerm modified mode [ 'cli.js', 493, 509 ]
43711 silly gunzTarPerm extractEntry index.js
43712 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43713 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/allclasses.tmpl
43714 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/allclasses.tmpl', 420, 436 ]
43715 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/javascript/
43716 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/javascript/', 493, 509 ]
43717 silly gunzTarPerm extractEntry readme.md
43718 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43719 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/javascript/wbos.csstools.mediaqueryfallback.js
43720 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/javascript/wbos.csstools.mediaqueryfallback.js',
43720 silly gunzTarPerm 420,
43720 silly gunzTarPerm 436 ]
43721 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/publish.js
43722 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/publish.js', 420, 436 ]
43723 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/class.tmpl
43724 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/class.tmpl', 420, 436 ]
43725 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/index.tmpl
43726 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/index.tmpl', 420, 436 ]
43727 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/
43728 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/', 493, 509 ]
43729 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/
43730 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/', 493, 509 ]
43731 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.woff
43732 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.woff',
43732 silly gunzTarPerm 420,
43732 silly gunzTarPerm 436 ]
43733 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/stylesheet.css
43734 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/stylesheet.css',
43734 silly gunzTarPerm 420,
43734 silly gunzTarPerm 436 ]
43735 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.woff
43736 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.woff',
43736 silly gunzTarPerm 420,
43736 silly gunzTarPerm 436 ]
43737 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.svg
43738 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.svg',
43738 silly gunzTarPerm 420,
43738 silly gunzTarPerm 436 ]
43739 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.ttf
43740 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.ttf',
43740 silly gunzTarPerm 420,
43740 silly gunzTarPerm 436 ]
43741 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.eot
43742 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.eot',
43742 silly gunzTarPerm 420,
43742 silly gunzTarPerm 436 ]
43743 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.ttf
43744 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.ttf',
43744 silly gunzTarPerm 420,
43744 silly gunzTarPerm 436 ]
43745 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.eot
43746 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.eot',
43746 silly gunzTarPerm 420,
43746 silly gunzTarPerm 436 ]
43747 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.svg
43748 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.svg',
43748 silly gunzTarPerm 420,
43748 silly gunzTarPerm 436 ]
43749 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/handheld.css
43750 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/handheld.css', 420, 436 ]
43751 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/screen.css
43752 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/screen.css', 420, 436 ]
43753 silly gunzTarPerm extractEntry jsdoc-toolkit/templates/codeview/css/all.css
43754 silly gunzTarPerm modified mode [ 'jsdoc-toolkit/templates/codeview/css/all.css', 420, 436 ]
43755 silly gunzTarPerm extractEntry schemas/
43756 silly gunzTarPerm modified mode [ 'schemas/', 493, 509 ]
43757 silly cache afterAdd strip-ansi@0.1.1
43758 verbose afterAdd /home/lukas/.npm/strip-ansi/0.1.1/package/package.json not in flight; writing
43759 silly cache afterAdd has-color@0.1.7
43760 verbose afterAdd /home/lukas/.npm/has-color/0.1.7/package/package.json not in flight; writing
43761 verbose afterAdd /home/lukas/.npm/strip-ansi/0.1.1/package/package.json written
43762 verbose afterAdd /home/lukas/.npm/has-color/0.1.7/package/package.json written
43763 silly cache afterAdd ansi-styles@1.0.0
43764 verbose afterAdd /home/lukas/.npm/ansi-styles/1.0.0/package/package.json not in flight; writing
43765 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/
43766 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/', 493, 509 ]
43767 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/schema.json
43768 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/schema.json', 420, 436 ]
43769 verbose afterAdd /home/lukas/.npm/ansi-styles/1.0.0/package/package.json written
43770 silly install resolved [ { name: 'strip-ansi',
43770 silly install resolved version: '0.1.1',
43770 silly install resolved description: 'Strip ANSI escape codes (used for colorizing strings in the terminal)',
43770 silly install resolved license: 'MIT',
43770 silly install resolved bin: { 'strip-ansi': 'cli.js' },
43770 silly install resolved repository:
43770 silly install resolved { type: 'git',
43770 silly install resolved url: 'git+https://github.com/sindresorhus/strip-ansi.git' },
43770 silly install resolved author:
43770 silly install resolved { name: 'Sindre Sorhus',
43770 silly install resolved email: 'sindresorhus@gmail.com',
43770 silly install resolved url: 'http://sindresorhus.com' },
43770 silly install resolved engines: { node: '>=0.8.0' },
43770 silly install resolved scripts: { test: 'mocha' },
43770 silly install resolved files: [ 'index.js', 'cli.js' ],
43770 silly install resolved keywords:
43770 silly install resolved [ 'strip',
43770 silly install resolved 'trim',
43770 silly install resolved 'remove',
43770 silly install resolved 'ansi',
43770 silly install resolved 'styles',
43770 silly install resolved 'color',
43770 silly install resolved 'colour',
43770 silly install resolved 'colors',
43770 silly install resolved 'terminal',
43770 silly install resolved 'console',
43770 silly install resolved 'cli',
43770 silly install resolved 'string',
43770 silly install resolved 'tty',
43770 silly install resolved 'escape',
43770 silly install resolved 'formatting',
43770 silly install resolved 'rgb',
43770 silly install resolved '256',
43770 silly install resolved 'shell',
43770 silly install resolved 'xterm',
43770 silly install resolved 'log',
43770 silly install resolved 'logging',
43770 silly install resolved 'command-line',
43770 silly install resolved 'text' ],
43770 silly install resolved devDependencies: { mocha: '~1.x' },
43770 silly install resolved readme: '# strip-ansi [![Build Status](https://secure.travis-ci.org/sindresorhus/strip-ansi.png?branch=master)](http://travis-ci.org/sindresorhus/strip-ansi)\n\n> Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) (used for colorizing strings in the terminal)\n\nUsed in the terminal color module [chalk](https://github.com/sindresorhus/chalk).\n\n\n## Install\n\nInstall locally with [npm](https://npmjs.org/package/strip-ansi):\n\n```\nnpm install --save strip-ansi\n```\n\nOr globally if you want to use it as a CLI app:\n\n```\nnpm install --global strip-ansi\n```\n\nYou can then use it in your Terminal like:\n\n```\nstrip-ansi file-with-color-codes\n```\n\nOr pipe something to it:\n\n```\nls | strip-ansi\n```\n\n\n## Example\n\n```js\nvar stripAnsi = require(\'strip-ansi\');\nstripAnsi(\'\\x1b[4mcake\\x1b[0m\');\n//=> cake\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n',
43770 silly install resolved readmeFilename: 'readme.md',
43770 silly install resolved bugs: { url: 'https://github.com/sindresorhus/strip-ansi/issues' },
43770 silly install resolved homepage: 'https://github.com/sindresorhus/strip-ansi#readme',
43770 silly install resolved _id: 'strip-ansi@0.1.1',
43770 silly install resolved _shasum: '39e8a98d044d150660abe4a6808acf70bb7bc991',
43770 silly install resolved _resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz',
43770 silly install resolved _from: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz' },
43770 silly install resolved { name: 'has-color',
43770 silly install resolved version: '0.1.7',
43770 silly install resolved description: 'Detect whether a terminal supports color',
43770 silly install resolved license: 'MIT',
43770 silly install resolved repository:
43770 silly install resolved { type: 'git',
43770 silly install resolved url: 'git+https://github.com/sindresorhus/has-color.git' },
43770 silly install resolved author:
43770 silly install resolved { name: 'Sindre Sorhus',
43770 silly install resolved email: 'sindresorhus@gmail.com',
43770 silly install resolved url: 'http://sindresorhus.com' },
43770 silly install resolved engines: { node: '>=0.10.0' },
43770 silly install resolved scripts: { test: 'mocha' },
43770 silly install resolved files: [ 'index.js' ],
43770 silly install resolved keywords:
43770 silly install resolved [ 'color',
43770 silly install resolved 'colour',
43770 silly install resolved 'colors',
43770 silly install resolved 'terminal',
43770 silly install resolved 'console',
43770 silly install resolved 'cli',
43770 silly install resolved 'ansi',
43770 silly install resolved 'styles',
43770 silly install resolved 'tty',
43770 silly install resolved 'rgb',
43770 silly install resolved '256',
43770 silly install resolved 'shell',
43770 silly install resolved 'xterm',
43770 silly install resolved 'command-line',
43770 silly install resolved 'support',
43770 silly install resolved 'capability',
43770 silly install resolved 'detect' ],
43770 silly install resolved devDependencies: { mocha: '*' },
43770 silly install resolved readme: '# has-color [![Build Status](https://travis-ci.org/sindresorhus/has-color.svg?branch=master)](https://travis-ci.org/sindresorhus/has-color)\n\n> Detect whether a terminal supports color.\n\nUsed in the terminal color module [chalk](https://github.com/sindresorhus/chalk).\n\n\n## Install\n\n```bash\n$ npm install --save has-color\n```\n\n\n## Usage\n\n```js\nvar hasColor = require(\'has-color\');\n\nif (hasColor) {\n\tconsole.log(\'Terminal supports color.\');\n}\n```\n\nIt obeys the `--color` and `--no-color` CLI flags.\n\n\n## License\n\n[MIT](http://opensource.org/licenses/MIT) © [Sindre Sorhus](http://sindresorhus.com)\n',
43770 silly install resolved readmeFilename: 'readme.md',
43770 silly install resolved bugs: { url: 'https://github.com/sindresorhus/has-color/issues' },
43770 silly install resolved homepage: 'https://github.com/sindresorhus/has-color#readme',
43770 silly install resolved _id: 'has-color@0.1.7',
43770 silly install resolved _shasum: '67144a5260c34fc3cca677d041daf52fe7b78b2f',
43770 silly install resolved _resolved: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz',
43770 silly install resolved _from: 'https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz' },
43770 silly install resolved { name: 'ansi-styles',
43770 silly install resolved version: '1.0.0',
43770 silly install resolved description: 'ANSI escape codes for colorizing strings in the terminal',
43770 silly install resolved keywords:
43770 silly install resolved [ 'ansi',
43770 silly install resolved 'styles',
43770 silly install resolved 'color',
43770 silly install resolved 'colour',
43770 silly install resolved 'colors',
43770 silly install resolved 'terminal',
43770 silly install resolved 'console',
43770 silly install resolved 'cli',
43770 silly install resolved 'string',
43770 silly install resolved 'tty',
43770 silly install resolved 'escape',
43770 silly install resolved 'formatting',
43770 silly install resolved 'rgb',
43770 silly install resolved '256',
43770 silly install resolved 'shell',
43770 silly install resolved 'xterm',
43770 silly install resolved 'log',
43770 silly install resolved 'logging',
43770 silly install resolved 'command-line',
43770 silly install resolved 'text' ],
43770 silly install resolved homepage: 'https://github.com/sindresorhus/ansi-styles',
43770 silly install resolved bugs: { url: 'https://github.com/sindresorhus/ansi-styles/issues' },
43770 silly install resolved license: 'MIT',
43770 silly install resolved author:
43770 silly install resolved { name: 'Sindre Sorhus',
43770 silly install resolved email: 'sindresorhus@gmail.com',
43770 silly install resolved url: 'http://sindresorhus.com' },
43770 silly install resolved files: [ 'ansi-styles.js' ],
43770 silly install resolved main: 'ansi-styles',
43770 silly install resolved repository:
43770 silly install resolved { type: 'git',
43770 silly install resolved url: 'git://github.com/sindresorhus/ansi-styles.git' },
43770 silly install resolved scripts: { test: 'mocha' },
43770 silly install resolved devDependencies: { mocha: '~1.12.0' },
43770 silly install resolved engines: { node: '>=0.8.0' },
43770 silly install resolved readme: '# ansi-styles [![Build Status](https://secure.travis-ci.org/sindresorhus/ansi-styles.png?branch=master)](http://travis-ci.org/sindresorhus/ansi-styles)\n\n> [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code#Colors_and_Styles) for colorizing strings in the terminal.\n\nYou probably want the higher-level [chalk](https://github.com/sindresorhus/chalk) module for styling your strings.\n\n![screenshot](screenshot.png)\n\n\n## Install\n\nInstall with [npm](https://npmjs.org/package/ansi-styles): `npm install --save ansi-styles`\n\n\n## Example\n\n```js\nvar ansi = require(\'ansi-styles\');\n\nconsole.log(ansi.green.open + \'Hello world!\' + ansi.green.close);\n```\n\n## API\n\nEach style has an `open` and `close` property.\n\n\n## Styles\n\n### General\n\n- reset\n- bold\n- italic\n- underline\n- inverse\n- strikethrough\n\n### Text colors\n\n- black\n- red\n- green\n- yellow\n- blue\n- magenta\n- cyan\n- white\n- gray\n\n### Background colors\n\n- bgBlack\n- bgRed\n- bgGreen\n- bgYellow\n- bgBlue\n- bgMagenta\n- bgCyan\n- bgWhite\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n',
43770 silly install resolved readmeFilename: 'readme.md',
43770 silly install resolved _id: 'ansi-styles@1.0.0',
43770 silly install resolved _shasum: 'cb102df1c56f5123eab8b67cd7b98027a0279178',
43770 silly install resolved _resolved: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz',
43770 silly install resolved _from: 'https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz' } ]
43771 info install strip-ansi@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43772 info install has-color@0.1.7 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43773 info install ansi-styles@1.0.0 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43774 info installOne strip-ansi@0.1.1
43775 verbose installOne of strip-ansi to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk not in flight; installing
43776 info installOne has-color@0.1.7
43777 verbose installOne of has-color to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk not in flight; installing
43778 info installOne ansi-styles@1.0.0
43779 verbose installOne of ansi-styles to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk not in flight; installing
43780 verbose lock using /home/lukas/.npm/_locks/strip-ansi-750565163f11aab2.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43781 verbose lock using /home/lukas/.npm/_locks/has-color-2698dee847c22008.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43782 verbose lock using /home/lukas/.npm/_locks/ansi-styles-b1222734c4c16b01.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43783 silly install write writing strip-ansi 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43784 silly install write writing has-color 0.1.7 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43785 silly install write writing ansi-styles 1.0.0 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43786 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/json-ref.json
43787 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/json-ref.json', 420, 436 ]
43788 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/empty-schema.json
43789 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/empty-schema.json', 420, 436 ]
43790 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43791 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43792 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43793 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color is being purged from base /home/lukas/ffsync/fxa-auth-server
43794 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43795 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles is being purged from base /home/lukas/ffsync/fxa-auth-server
43796 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43797 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi is being purged from base /home/lukas/ffsync/fxa-auth-server
43798 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43799 verbose tar unpack /home/lukas/.npm/has-color/0.1.7/package.tgz
43800 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43801 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color is being purged
43802 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43803 verbose tar unpack /home/lukas/.npm/ansi-styles/1.0.0/package.tgz
43804 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43805 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles is being purged
43806 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43807 verbose tar unpack /home/lukas/.npm/strip-ansi/0.1.1/package.tgz
43808 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43809 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi is being purged
43810 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43811 silly gunzTarPerm modes [ '775', '664' ]
43812 silly gunzTarPerm modes [ '775', '664' ]
43813 silly gunzTarPerm modes [ '775', '664' ]
43814 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/hyper-schema.json
43815 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/hyper-schema.json', 420, 436 ]
43816 silly gunzTarPerm extractEntry schemas/json-schema-draft-02/links.json
43817 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-02/links.json', 420, 436 ]
43818 silly gunzTarPerm extractEntry package.json
43819 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43820 silly gunzTarPerm extractEntry package.json
43821 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43822 silly gunzTarPerm extractEntry package.json
43823 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
43824 silly gunzTarPerm extractEntry index.js
43825 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43826 silly gunzTarPerm extractEntry readme.md
43827 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43828 silly gunzTarPerm extractEntry ansi-styles.js
43829 silly gunzTarPerm modified mode [ 'ansi-styles.js', 420, 436 ]
43830 silly gunzTarPerm extractEntry readme.md
43831 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43832 silly gunzTarPerm extractEntry schemas/json-schema-draft-03/
43833 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-03/', 493, 509 ]
43834 silly gunzTarPerm extractEntry schemas/json-schema-draft-03/schema.json
43835 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-03/schema.json', 420, 436 ]
43836 silly gunzTarPerm extractEntry cli.js
43837 silly gunzTarPerm modified mode [ 'cli.js', 493, 509 ]
43838 silly gunzTarPerm extractEntry index.js
43839 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
43840 silly gunzTarPerm extractEntry schemas/json-schema-draft-03/json-ref.json
43841 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-03/json-ref.json', 420, 436 ]
43842 silly gunzTarPerm extractEntry schemas/json-schema-draft-03/hyper-schema.json
43843 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-03/hyper-schema.json', 420, 436 ]
43844 silly gunzTarPerm extractEntry readme.md
43845 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
43846 silly gunzTarPerm extractEntry schemas/json-schema-draft-03/links.json
43847 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-03/links.json', 420, 436 ]
43848 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/
43849 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/', 493, 509 ]
43850 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/schema.json
43851 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/schema.json', 420, 436 ]
43852 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/json-ref.json
43853 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/json-ref.json', 420, 436 ]
43854 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles/package.json
43855 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color/package.json
43856 info preinstall ansi-styles@1.0.0
43857 info preinstall has-color@0.1.7
43858 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles/package.json
43859 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/empty-schema.json
43860 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/empty-schema.json', 420, 436 ]
43861 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/hyper-schema.json
43862 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/hyper-schema.json', 420, 436 ]
43863 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color/package.json
43864 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi/package.json
43865 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles/package.json
43866 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color/package.json
43867 info preinstall strip-ansi@0.1.1
43868 silly gunzTarPerm extractEntry schemas/json-schema-draft-01/links.json
43869 silly gunzTarPerm modified mode [ 'schemas/json-schema-draft-01/links.json', 420, 436 ]
43870 silly gunzTarPerm extractEntry tests/
43871 silly gunzTarPerm modified mode [ 'tests/', 493, 509 ]
43872 silly gunzTarPerm extractEntry tests/index3.html
43873 silly gunzTarPerm modified mode [ 'tests/index3.html', 420, 436 ]
43874 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi/package.json
43875 silly install resolved []
43876 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43877 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43878 silly install resolved []
43879 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43880 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43881 silly gunzTarPerm extractEntry tests/index.html
43882 silly gunzTarPerm modified mode [ 'tests/index.html', 420, 436 ]
43883 info linkStuff ansi-styles@1.0.0
43884 silly linkStuff ansi-styles@1.0.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules as its parent node_modules
43885 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi/package.json
43886 info linkStuff has-color@0.1.7
43887 silly linkStuff has-color@0.1.7 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules as its parent node_modules
43888 silly gunzTarPerm extractEntry tests/tests.js
43889 silly gunzTarPerm modified mode [ 'tests/tests.js', 420, 436 ]
43890 silly gunzTarPerm extractEntry tests/index3b.html
43891 silly gunzTarPerm modified mode [ 'tests/index3b.html', 420, 436 ]
43892 silly install resolved []
43893 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43894 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43895 verbose linkBins ansi-styles@1.0.0
43896 verbose linkMans ansi-styles@1.0.0
43897 verbose rebuildBundles ansi-styles@1.0.0
43898 verbose linkBins has-color@0.1.7
43899 verbose linkMans has-color@0.1.7
43900 verbose rebuildBundles has-color@0.1.7
43901 info linkStuff strip-ansi@0.1.1
43902 silly linkStuff strip-ansi@0.1.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules as its parent node_modules
43903 info install ansi-styles@1.0.0
43904 silly gunzTarPerm extractEntry tests/qunit.js
43905 silly gunzTarPerm modified mode [ 'tests/qunit.js', 420, 436 ]
43906 silly gunzTarPerm extractEntry tests/tests3.js
43907 silly gunzTarPerm modified mode [ 'tests/tests3.js', 420, 436 ]
43908 info install has-color@0.1.7
43909 info postinstall ansi-styles@1.0.0
43910 info postinstall has-color@0.1.7
43911 verbose unlock done using /home/lukas/.npm/_locks/ansi-styles-b1222734c4c16b01.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/ansi-styles
43912 verbose unlock done using /home/lukas/.npm/_locks/has-color-2698dee847c22008.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/has-color
43913 silly gunzTarPerm extractEntry tests/qunit.css
43914 silly gunzTarPerm modified mode [ 'tests/qunit.css', 420, 436 ]
43915 silly gunzTarPerm extractEntry tests/tests3b.js
43916 silly gunzTarPerm modified mode [ 'tests/tests3b.js', 420, 436 ]
43917 verbose linkBins strip-ansi@0.1.1
43918 verbose link bins [ { 'strip-ansi': 'cli.js' },
43918 verbose link bins '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/.bin',
43918 verbose link bins false ]
43919 verbose linkMans strip-ansi@0.1.1
43920 verbose rebuildBundles strip-ansi@0.1.1
43921 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/.bin/strip-ansi is being purged
43922 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/.bin/strip-ansi
43923 info install strip-ansi@0.1.1
43924 silly gunzTarPerm extractEntry CHANGELOG.md
43925 silly gunzTarPerm modified mode [ 'CHANGELOG.md', 420, 436 ]
43926 info postinstall strip-ansi@0.1.1
43927 verbose unlock done using /home/lukas/.npm/_locks/strip-ansi-750565163f11aab2.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk/node_modules/strip-ansi
43928 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43929 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43930 info linkStuff chalk@0.4.0
43931 silly linkStuff chalk@0.4.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules as its parent node_modules
43932 verbose linkBins chalk@0.4.0
43933 verbose linkMans chalk@0.4.0
43934 verbose rebuildBundles chalk@0.4.0
43935 verbose rebuildBundles [ '.bin', 'ansi-styles', 'has-color', 'strip-ansi' ]
43936 info install chalk@0.4.0
43937 info postinstall chalk@0.4.0
43938 verbose unlock done using /home/lukas/.npm/_locks/chalk-c2480d02f7565f30.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom/node_modules/chalk
43939 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43940 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43941 info linkStuff nomnom@1.8.1
43942 silly linkStuff nomnom@1.8.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules as its parent node_modules
43943 verbose linkBins nomnom@1.8.1
43944 verbose linkMans nomnom@1.8.1
43945 verbose rebuildBundles nomnom@1.8.1
43946 verbose rebuildBundles [ 'chalk', 'underscore' ]
43947 info install nomnom@1.8.1
43948 info postinstall nomnom@1.8.1
43949 verbose unlock done using /home/lukas/.npm/_locks/nomnom-54563cb354735162.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/nomnom
43950 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV/package.json
43951 info preinstall JSV@4.0.2
43952 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV/package.json
43953 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV/package.json
43954 silly install resolved []
43955 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
43956 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
43957 info linkStuff JSV@4.0.2
43958 silly linkStuff JSV@4.0.2 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules as its parent node_modules
43959 verbose linkBins JSV@4.0.2
43960 verbose linkMans JSV@4.0.2
43961 verbose rebuildBundles JSV@4.0.2
43962 info install JSV@4.0.2
43963 info postinstall JSV@4.0.2
43964 verbose unlock done using /home/lukas/.npm/_locks/JSV-5c5d045e20104879.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint/node_modules/JSV
43965 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint
43966 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint
43967 info linkStuff jsonlint@1.6.0
43968 silly linkStuff jsonlint@1.6.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules as its parent node_modules
43969 verbose linkBins jsonlint@1.6.0
43970 verbose link bins [ { jsonlint: 'lib/cli.js' },
43970 verbose link bins '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/.bin',
43970 verbose link bins false ]
43971 verbose linkMans jsonlint@1.6.0
43972 verbose rebuildBundles jsonlint@1.6.0
43973 verbose rebuildBundles [ 'JSV', 'nomnom' ]
43974 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/.bin/jsonlint is being purged
43975 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/.bin/jsonlint
43976 silly cache afterAdd lodash@3.10.1
43977 verbose afterAdd /home/lukas/.npm/lodash/3.10.1/package/package.json not in flight; writing
43978 silly cache afterAdd lodash@3.10.1
43979 verbose afterAdd /home/lukas/.npm/lodash/3.10.1/package/package.json already in flight; not writing
43980 silly cache afterAdd rx@2.5.3
43981 verbose afterAdd /home/lukas/.npm/rx/2.5.3/package/package.json not in flight; writing
43982 info install jsonlint@1.6.0
43983 info postinstall jsonlint@1.6.0
43984 verbose unlock done using /home/lukas/.npm/_locks/jsonlint-9f3f0ace2802ba7c.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson/node_modules/jsonlint
43985 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson
43986 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson
43987 verbose afterAdd /home/lukas/.npm/lodash/3.10.1/package/package.json written
43988 silly install resolved [ { name: 'sprintf-js',
43988 silly install resolved version: '1.0.3',
43988 silly install resolved description: 'JavaScript sprintf implementation',
43988 silly install resolved author:
43988 silly install resolved { name: 'Alexandru Marasteanu',
43988 silly install resolved email: 'hello@alexei.ro',
43988 silly install resolved url: 'http://alexei.ro/' },
43988 silly install resolved main: 'src/sprintf.js',
43988 silly install resolved scripts: { test: 'mocha test/test.js' },
43988 silly install resolved repository:
43988 silly install resolved { type: 'git',
43988 silly install resolved url: 'git+https://github.com/alexei/sprintf.js.git' },
43988 silly install resolved license: 'BSD-3-Clause',
43988 silly install resolved readmeFilename: 'README.md',
43988 silly install resolved devDependencies:
43988 silly install resolved { mocha: '*',
43988 silly install resolved grunt: '*',
43988 silly install resolved 'grunt-contrib-watch': '*',
43988 silly install resolved 'grunt-contrib-uglify': '*' },
43988 silly install resolved readme: '# sprintf.js\n**sprintf.js** is a complete open source JavaScript sprintf implementation for the *browser* and *node.js*.\n\nIts prototype is simple:\n\n string sprintf(string format , [mixed arg1 [, mixed arg2 [ ,...]]])\n\nThe placeholders in the format string are marked by `%` and are followed by one or more of these elements, in this order:\n\n* An optional number followed by a `$` sign that selects which argument index to use for the value. If not specified, arguments will be placed in the same order as the placeholders in the input string.\n* An optional `+` sign that forces to preceed the result with a plus or minus sign on numeric values. By default, only the `-` sign is used on negative numbers.\n* An optional padding specifier that says what character to use for padding (if specified). Possible values are `0` or any other character precedeed by a `\'` (single quote). The default is to pad with *spaces*.\n* An optional `-` sign, that causes sprintf to left-align the result of this placeholder. The default is to right-align the result.\n* An optional number, that says how many characters the result should have. If the value to be returned is shorter than this number, the result will be padded. When used with the `j` (JSON) type specifier, the padding length specifies the tab size used for indentation.\n* An optional precision modifier, consisting of a `.` (dot) followed by a number, that says how many digits should be displayed for floating point numbers. When used with the `g` type specifier, it specifies the number of significant digits. When used on a string, it causes the result to be truncated.\n* A type specifier that can be any of:\n * `%` — yields a literal `%` character\n * `b` — yields an integer as a binary number\n * `c` — yields an integer as the character with that ASCII value\n * `d` or `i` — yields an integer as a signed decimal number\n * `e` — yields a float using scientific notation\n * `u` — yields an integer as an unsigned decimal number\n * `f` — yields a float as is; see notes on precision above\n * `g` — yields a float as is; see notes on precision above\n * `o` — yields an integer as an octal number\n * `s` — yields a string as is\n * `x` — yields an integer as a hexadecimal number (lower-case)\n * `X` — yields an integer as a hexadecimal number (upper-case)\n * `j` — yields a JavaScript object or array as a JSON encoded string\n\n## JavaScript `vsprintf`\n`vsprintf` is the same as `sprintf` except that it accepts an array of arguments, rather than a variable number of arguments:\n\n vsprintf("The first 4 letters of the english alphabet are: %s, %s, %s and %s", ["a", "b", "c", "d"])\n\n## Argument swapping\nYou can also swap the arguments. That is, the order of the placeholders doesn\'t have to match the order of the arguments. You can do that by simply indicating in the format string which arguments the placeholders refer to:\n\n sprintf("%2$s %3$s a %1$s", "cracker", "Polly", "wants")\nAnd, of course, you can repeat the placeholders without having to increase the number of arguments.\n\n## Named arguments\nFormat strings may contain replacement fields rather than positional placeholders. Instead of referring to a certain argument, you can now refer to a certain key within an object. Replacement fields are surrounded by rounded parentheses - `(` and `)` - and begin with a keyword that refers to a key:\n\n var user = {\n name: "Dolly"\n }\n sprintf("Hello %(name)s", user) // Hello Dolly\nKeywords in replacement fields can be optionally followed by any number of keywords or indexes:\n\n var users = [\n {name: "Dolly"},\n {name: "Molly"},\n {name: "Polly"}\n ]\n sprintf("Hello %(users[0].name)s, %(users[1].name)s and %(users[2].name)s", {users: users}) // Hello Dolly, Molly and Polly\nNote: mixing positional and named placeholders is not (yet) supported\n\n## Computed values\nYou can pass in a function as a dynamic value and it will be invoked (with no arguments) in order to compute the value on-the-fly.\n\n sprintf("Current timestamp: %d", Date.now) // Current timestamp: 1398005382890\n sprintf("Current date and time: %s", function() { return new Date().toString() })\n\n# AngularJS\nYou can now use `sprintf` and `vsprintf` (also aliased as `fmt` and `vfmt` respectively) in your AngularJS projects. See `demo/`.\n\n# Installation\n\n## Via Bower\n\n bower install sprintf\n\n## Or as a node.js module\n\n npm install sprintf-js\n\n### Usage\n\n var sprintf = require("sprintf-js").sprintf,\n vsprintf = require("sprintf-js").vsprintf\n\n sprintf("%2$s %3$s a %1$s", "cracker", "Polly", "wants")\n vsprintf("The first 4 letters of the english alphabet are: %s, %s, %s and %s", ["a", "b", "c", "d"])\n\n# License\n\n**sprintf.js** is licensed under the terms of the 3-clause BSD license.\n',
43988 silly install resolved bugs: { url: 'https://github.com/alexei/sprintf.js/issues' },
43988 silly install resolved homepage: 'https://github.com/alexei/sprintf.js#readme',
43988 silly install resolved _id: 'sprintf-js@1.0.3',
43988 silly install resolved _shasum: '04e6926f662895354f3dd015203633b857297e2c',
43988 silly install resolved _resolved: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz',
43988 silly install resolved _from: 'https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz' },
43988 silly install resolved { name: 'lodash',
43988 silly install resolved version: '3.10.1',
43988 silly install resolved description: 'The modern build of lodash modular utilities.',
43988 silly install resolved homepage: 'https://lodash.com/',
43988 silly install resolved icon: 'https://lodash.com/icon.svg',
43988 silly install resolved license: 'MIT',
43988 silly install resolved main: 'index.js',
43988 silly install resolved keywords: [ 'modules', 'stdlib', 'util' ],
43988 silly install resolved author:
43988 silly install resolved { name: 'John-David Dalton',
43988 silly install resolved email: 'john.david.dalton@gmail.com',
43988 silly install resolved url: 'http://allyoucanleet.com/' },
43988 silly install resolved contributors: [ [Object], [Object], [Object], [Object], [Object] ],
43988 silly install resolved repository: { type: 'git', url: 'git+https://github.com/lodash/lodash.git' },
43988 silly install resolved scripts: { test: 'echo "See https://travis-ci.org/lodash/lodash-cli for testing details."' },
43988 silly install resolved readme: '# lodash v3.10.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules.\n\nGenerated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):\n```bash\n$ lodash modularize modern exports=node -o ./\n$ lodash modern -d -o ./index.js\n```\n\n## Installation\n\nUsing npm:\n\n```bash\n$ {sudo -H} npm i -g npm\n$ npm i --save lodash\n```\n\nIn Node.js/io.js:\n\n```js\n// load the modern build\nvar _ = require(\'lodash\');\n// or a method category\nvar array = require(\'lodash/array\');\n// or a method (great for smaller builds with browserify/webpack)\nvar chunk = require(\'lodash/array/chunk\');\n```\n\nSee the [package source](https://github.com/lodash/lodash/tree/3.10.1-npm) for more details.\n\n**Note:**<br>\nDon’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>\nInstall [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default.\n\n## Module formats\n\nlodash is also available in a variety of other builds & module formats.\n\n * npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds\n * AMD modules for [modern](https://github.com/lodash/lodash/tree/3.10.1-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.10.1-amd) builds\n * ES modules for the [modern](https://github.com/lodash/lodash/tree/3.10.1-es) build\n\n## Further Reading\n\n * [API Documentation](https://lodash.com/docs)\n * [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences)\n * [Changelog](https://github.com/lodash/lodash/wiki/Changelog)\n * [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap)\n * [More Resources](https://github.com/lodash/lodash/wiki/Resources)\n\n## Features\n\n * ~100% [code coverage](https://coveralls.io/r/lodash)\n * Follows [semantic versioning](http://semver.org/) for releases\n * [Lazily evaluated](http://filimanjaro.com/blog/2014/introducing-lazy-evaluation/) chaining\n * [_(…)](https://lodash.com/docs#_) supports implicit chaining\n * [_.ary](https://lodash.com/docs#ary) & [_.rearg](https://lodash.com/docs#rearg) to change function argument limits & order\n * [_.at](https://lodash.com/docs#at) for cherry-picking collection values\n * [_.attempt](https://lodash.com/docs#attempt) to execute functions which may error without a try-catch\n * [_.before](https://lodash.com/docs#before) to complement [_.after](https://lodash.com/docs#after)\n * [_.bindKey](https://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods\n * [_.chunk](https://lodash.com/docs#chunk) for splitting an array into chunks of a given size\n * [_.clone](https://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects\n * [_.cloneDeep](https://lodash.com/docs#cloneDeep) for deep cloning arrays & objects\n * [_.curry](https://lodash.com/docs#curry) & [_.curryRight](https://lodash.com/docs#curryRight) for creating [curried](http://hughfdjackson.com/javascript/why-curry-helps/) functions\n * [_.debounce](https://lodash.com/docs#debounce) & [_.throttle](https://lodash.com/docs#throttle) are cancelable & accept options for more control\n * [_.defaultsDeep](https://lodash.com/docs#defaultsDeep) for recursively assigning default properties\n * [_.fill](https://lodash.com/docs#fill) to fill arrays with values\n * [_.findKey](https://lodash.com/docs#findKey) for finding keys\n * [_.flow](https://lodash.com/docs#flow) to complement [_.flowRight](https://lodash.com/docs#flowRight) (a.k.a `_.compose`)\n * [_.forEach](https://lodash.com/docs#forEach) supports exiting early\n * [_.forIn](https://lodash.com/docs#forIn) for iterating all enumerable properties\n * [_.forOwn](https://lodash.com/docs#forOwn) for iterating own properties\n * [_.get](https://lodash.com/docs#get) & [_.set](https://lodash.com/docs#set) for deep property getting & setting\n * [_.gt](https://lodash.com/docs#gt), [_.gte](https://lodash.com/docs#gte), [_.lt](https://lodash.com/docs#lt), & [_.lte](https://lodash.com/docs#lte) relational methods\n * [_.inRange](https://lodash.com/docs#inRange) for checking whether a number is within a given range\n * [_.isNative](https://lodash.com/docs#isNative) to check for native functions\n * [_.isPlainObject](https://lodash.com/docs#isPlainObject) & [_.toPlainObject](https://lodash.com/docs#toPlainObject) to check for & convert to `Object` objects\n * [_.isTypedArray](https://lodash.com/docs#isTypedArray) to check for typed arrays\n * [_.mapKeys](https://lodash.com/docs#mapKeys) for mapping keys to an object\n * [_.matches](https://lodash.com/docs#matches) supports deep object comparisons\n * [_.matchesProperty](https://lodash.com/docs#matchesProperty) to complement [_.matches](https://lodash.com/docs#matches) & [_.property](https://lodash.com/docs#property)\n * [_.merge](https://lodash.com/docs#merge) for a deep [_.extend](https://lodash.com/docs#extend)\n * [_.method](https://lodash.com/docs#method) & [_.methodOf](https://lodash.com/docs#methodOf) to create functions that invoke methods\n * [_.modArgs](https://lodash.com/docs#modArgs) for more advanced functional composition\n * [_.parseInt](https://lodash.com/docs#parseInt) for consistent cross-environment behavior\n * [_.pull](https://lodash.com/docs#pull), [_.pullAt](https://lodash.com/docs#pullAt), & [_.remove](https://lodash.com/docs#remove) for mutating arrays\n * [_.random](https://lodash.com/docs#random) supports returning floating-point numbers\n * [_.restParam](https://lodash.com/docs#restParam) & [_.spread](https://lodash.com/docs#spread) for applying rest parameters & spreading arguments to functions\n * [_.runInContext](https://lodash.com/docs#runInContext) for collisionless mixins & easier mocking\n * [_.slice](https://lodash.com/docs#slice) for creating subsets of array-like values\n * [_.sortByAll](https://lodash.com/docs#sortByAll) & [_.sortByOrder](https://lodash.com/docs#sortByOrder) for sorting by multiple properties & orders\n * [_.support](https://lodash.com/docs#support) for flagging environment features\n * [_.template](https://lodash.com/docs#template) supports [*“imports”*](https://lodash.com/docs#templateSettings-imports) options & [ES template delimiters](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literal-lexical-components)\n * [_.transform](https://lodash.com/docs#transform) as a powerful alternative to [_.reduce](https://lodash.com/docs#reduce) for transforming objects\n * [_.unzipWith](https://lodash.com/docs#unzipWith) & [_.zipWith](https://lodash.com/docs#zipWith) to specify how grouped values should be combined\n * [_.valuesIn](https://lodash.com/docs#valuesIn) for getting values of all enumerable properties\n * [_.xor](https://lodash.com/docs#xor) to complement [_.difference](https://lodash.com/docs#difference), [_.intersection](https://lodash.com/docs#intersection), & [_.union](https://lodash.com/docs#union)\n * [_.add](https://lodash.com/docs#add), [_.round](https://lodash.com/docs#round), [_.sum](https://lodash.com/docs#sum), &\n [more](https://lodash.com/docs "_.ceil & _.floor") math methods\n * [_.bind](https://lodash.com/docs#bind), [_.curry](https://lodash.com/docs#curry), [_.partial](https://lodash.com/docs#partial), &\n [more](https://lodash.com/docs "_.bindKey, _.curryRight, _.partialRight") support customizable argument placeholders\n * [_.capitalize](https://lodash.com/docs#capitalize), [_.trim](https://lodash.com/docs#trim), &\n [more](https://lodash.com/docs "_.camelCase, _.deburr, _.endsWith, _.escapeRegExp, _.kebabCase, _.pad, _.padLeft, _.padRight, _.repeat, _.snakeCase, _.startCase, _.startsWith, _.trimLeft, _.trimRight, _.trunc, _.words") string methods\n * [_.clone](https://lodash.com/docs#clone), [_.isEqual](https://lodash.com/docs#isEqual), &\n [more](https://lodash.com/docs "_.assign, _.cloneDeep, _.merge") accept customizer callbacks\n * [_.dropWhile](https://lodash.com/docs#dropWhile), [_.takeWhile](https://lodash.com/docs#takeWhile), &\n [more](https://lodash.com/docs "_.drop, _.dropRight, _.dropRightWhile, _.take, _.takeRight, _.takeRightWhile") to complement [_.first](https://lodash.com/docs#first), [_.initial](https://lodash.com/docs#initial), [_.last](https://lodash.com/docs#last), & [_.rest](https://lodash.com/docs#rest)\n * [_.findLast](https://lodash.com/docs#findLast), [_.findLastKey](https://lodash.com/docs#findLastKey), &\n [more](https://lodash.com/docs "_.curryRight, _.dropRight, _.dropRightWhile, _.flowRight, _.forEachRight, _.forInRight, _.forOwnRight, _.padRight, partialRight, _.takeRight, _.trimRight, _.takeRightWhile") right-associative methods\n * [_.includes](https://lodash.com/docs#includes), [_.toArray](https://lodash.com/docs#toArray), &\n [more](https://lodash.com/docs "_.at, _.countBy, _.every, _.filter, _.find, _.findLast, _.findWhere, _.forEach, _.forEachRight, _.groupBy, _.indexBy, _.invoke, _.map, _.max, _.min, _.partition, _.pluck, _.reduce, _.reduceRight, _.reject, _.shuffle, _.size, _.some, _.sortBy, _.sortByAll, _.sortByOrder, _.sum, _.where") accept strings\n * [_#commit](https://lodash.com/docs#prototype-commit) & [_#plant](https://lodash.com/docs#prototype-plant) for working with chain sequences\n * [_#thru](https://lodash.com/docs#thru) to pass values thru a chain sequence\n\n## Support\n\nTested in Chrome 43-44, Firefox 38-39, IE 6-11, MS Edge, Safari 5-8, ChakraNode 0.12.2, io.js 2.5.0, Node.js 0.8.28, 0.10.40, & 0.12.7, PhantomJS 1.9.8, RingoJS 0.11, & Rhino 1.7.6.\nAutomated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. Special thanks to [Sauce Labs](https://saucelabs.com/) for providing automated browser testing.\n',
43988 silly install resolved readmeFilename: 'README.md',
43988 silly install resolved bugs: { url: 'https://github.com/lodash/lodash/issues' },
43988 silly install resolved _id: 'lodash@3.10.1',
43988 silly install resolved _shasum: '5bf45e8e49ba4189e17d482789dfd15bd140b7b6',
43988 silly install resolved _resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
43988 silly install resolved _from: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' } ]
43989 info install sprintf-js@1.0.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse
43990 info install lodash@3.10.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse
43991 info installOne sprintf-js@1.0.3
43992 verbose installOne of sprintf-js to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse not in flight; installing
43993 info installOne lodash@3.10.1
43994 verbose installOne of lodash to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse not in flight; installing
43995 verbose afterAdd /home/lukas/.npm/rx/2.5.3/package/package.json written
43996 silly install resolved [ { name: 'readline2',
43996 silly install resolved version: '0.1.1',
43996 silly install resolved description: 'Readline Façade fixing bugs and issues found in releases 0.8 and 0.10',
43996 silly install resolved scripts: { test: 'mocha -R spec' },
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+https://github.com/sboudrias/readline2.git' },
43996 silly install resolved keywords: [ 'cli', 'terminal', 'readline', 'tty', 'ansi' ],
43996 silly install resolved author: { name: 'Simon Boudrias', email: 'admin@simonboudrias.com' },
43996 silly install resolved license: 'MIT',
43996 silly install resolved files: [ 'index.js' ],
43996 silly install resolved dependencies: { 'mute-stream': '0.0.4', 'strip-ansi': '^2.0.1' },
43996 silly install resolved devDependencies: { chalk: '^0.5.1', mocha: '^2.1.0', sinon: '^1.7.3' },
43996 silly install resolved readme: 'readline2 [![Build Status](https://travis-ci.org/SBoudrias/readline2.png?branch=master)](https://travis-ci.org/SBoudrias/readline2)\n=========\n\nNode.js (v0.8 and v0.10) had some bugs and issues with the default [Readline](http://nodejs.org/api/readline.html) module.\n\nThis module include fixes seen in later version (0.11) and ease some undesirable behavior one could see using the readline to create interatives prompts. This means `readline2` change some behaviors and as so is **not** meant to be a drop-in replacement.\n\nThis project is extracted from the core of [Inquirer.js interactive prompt interface](https://github.com/SBoudrias/Inquirer.js) to be available as a standalone module.\n\n\nDocumentation\n-------------\n\n**Installation**: `npm install --save readline2`\n\n### readline2.createInterface( options ); -> {Interface}\n\nPresent the same API as [Node.js `readline.createInterface()`](http://nodejs.org/api/readline.html)\n\n#### Improvements\n- Default `options.input` as `process.stdin`\n- Default `options.output` as `process.stdout`\n- `interface.stdout` is wrapped in a [MuteStream](https://github.com/isaacs/mute-stream)\n- Prevent `up` and `down` keys from moving through history inside the readline\n- Fix cursor position after a line refresh when the `Interface` prompt contains ANSI colors\n\n\nLicense\n-------------\n\nCopyright (c) 2012 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))\nLicensed under the MIT license.\n',
43996 silly install resolved readmeFilename: 'README.md',
43996 silly install resolved bugs: { url: 'https://github.com/sboudrias/readline2/issues' },
43996 silly install resolved homepage: 'https://github.com/sboudrias/readline2#readme',
43996 silly install resolved _id: 'readline2@0.1.1',
43996 silly install resolved _shasum: '99443ba6e83b830ef3051bfd7dc241a82728d568',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz' },
43996 silly install resolved { name: 'cli-width',
43996 silly install resolved version: '1.0.1',
43996 silly install resolved description: 'Get stdout window width, with two fallbacks, tty and then a default.',
43996 silly install resolved main: 'index.js',
43996 silly install resolved scripts: { test: 'node test | tap-spec' },
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+ssh://git@github.com/knownasilya/cli-width.git' },
43996 silly install resolved author: { name: 'Ilya Radchenko', email: 'ilya@burstcreations.com' },
43996 silly install resolved license: 'ISC',
43996 silly install resolved bugs: { url: 'https://github.com/knownasilya/cli-width/issues' },
43996 silly install resolved homepage: 'https://github.com/knownasilya/cli-width',
43996 silly install resolved devDependencies: { 'tap-spec': '^2.2.0', tape: '^3.4.0' },
43996 silly install resolved readme: 'cli-width\n=========\n\nGet stdout window width, with two fallbacks, `tty` and then a default.\n\n## Usage\n\n```\nnpm install --save cli-width\n```\n\n```js\n\'use stict\';\n\nvar cliWidth = require(\'cli-width\');\n\ncliWidth(); // maybe 204 :)\n```\n\nIf none of the methods are supported, the default is `0` and\ncan be changed via `cliWidth.defaultWidth = 200;`.\n\n## Tests\n\n```bash\nnpm install\nnpm test\n```\n',
43996 silly install resolved readmeFilename: 'README.md',
43996 silly install resolved _id: 'cli-width@1.0.1',
43996 silly install resolved _shasum: '14d4f6870234d91e97f7dd81e76be8271410a1ef',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/cli-width/-/cli-width-1.0.1.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/cli-width/-/cli-width-1.0.1.tgz' },
43996 silly install resolved { name: 'figures',
43996 silly install resolved version: '1.3.5',
43996 silly install resolved description: 'Unicode symbols with Windows CMD fallbacks',
43996 silly install resolved license: 'MIT',
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+https://github.com/sindresorhus/figures.git' },
43996 silly install resolved author:
43996 silly install resolved { name: 'Sindre Sorhus',
43996 silly install resolved email: 'sindresorhus@gmail.com',
43996 silly install resolved url: 'http://sindresorhus.com' },
43996 silly install resolved engines: { node: '>=0.10.0' },
43996 silly install resolved scripts: { test: 'node test.js' },
43996 silly install resolved files: [ 'index.js' ],
43996 silly install resolved keywords:
43996 silly install resolved [ 'unicode',
43996 silly install resolved 'cli',
43996 silly install resolved 'cmd',
43996 silly install resolved 'command-line',
43996 silly install resolved 'characters',
43996 silly install resolved 'char',
43996 silly install resolved 'symbol',
43996 silly install resolved 'symbols',
43996 silly install resolved 'figure',
43996 silly install resolved 'figures',
43996 silly install resolved 'fallback' ],
43996 silly install resolved devDependencies: { ava: '0.0.4' },
43996 silly install resolved readme: '# figures [![Build Status](https://travis-ci.org/sindresorhus/figures.svg?branch=master)](https://travis-ci.org/sindresorhus/figures)\n\n> Unicode symbols with Windows CMD fallbacks\n\n[![](screenshot.png)](index.js)\n\n[*and more...*](index.js)\n\nWindows CMD only supports a [limited character set](http://en.wikipedia.org/wiki/Code_page_437).\n\n\n## Install\n\n```sh\n$ npm install --save figures\n```\n\n\n## Usage\n\nSee the [source](index.js) for supported symbols.\n\n```js\nvar figures = require(\'figures\');\n\nconsole.log(figures.tick);\n// On real OSes: ✔︎\n// On Windows: √\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n',
43996 silly install resolved readmeFilename: 'readme.md',
43996 silly install resolved bugs: { url: 'https://github.com/sindresorhus/figures/issues' },
43996 silly install resolved homepage: 'https://github.com/sindresorhus/figures#readme',
43996 silly install resolved _id: 'figures@1.3.5',
43996 silly install resolved _shasum: 'd1a31f4e1d2c2938ecde5c06aa16134cf29f4771',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/figures/-/figures-1.3.5.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/figures/-/figures-1.3.5.tgz' },
43996 silly install resolved { name: 'ansi-regex',
43996 silly install resolved version: '1.1.1',
43996 silly install resolved description: 'Regular expression for matching ANSI escape codes',
43996 silly install resolved license: 'MIT',
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+https://github.com/sindresorhus/ansi-regex.git' },
43996 silly install resolved author:
43996 silly install resolved { name: 'Sindre Sorhus',
43996 silly install resolved email: 'sindresorhus@gmail.com',
43996 silly install resolved url: 'http://sindresorhus.com' },
43996 silly install resolved maintainers: [ [Object], [Object] ],
43996 silly install resolved engines: { node: '>=0.10.0' },
43996 silly install resolved scripts:
43996 silly install resolved { test: 'mocha test/test.js',
43996 silly install resolved 'view-supported': 'node test/viewCodes.js' },
43996 silly install resolved files: [ 'index.js' ],
43996 silly install resolved keywords:
43996 silly install resolved [ 'ansi',
43996 silly install resolved 'styles',
43996 silly install resolved 'color',
43996 silly install resolved 'colour',
43996 silly install resolved 'colors',
43996 silly install resolved 'terminal',
43996 silly install resolved 'console',
43996 silly install resolved 'cli',
43996 silly install resolved 'string',
43996 silly install resolved 'tty',
43996 silly install resolved 'escape',
43996 silly install resolved 'formatting',
43996 silly install resolved 'rgb',
43996 silly install resolved '256',
43996 silly install resolved 'shell',
43996 silly install resolved 'xterm',
43996 silly install resolved 'command-line',
43996 silly install resolved 'text',
43996 silly install resolved 'regex',
43996 silly install resolved 'regexp',
43996 silly install resolved 're',
43996 silly install resolved 'match',
43996 silly install resolved 'test',
43996 silly install resolved 'find',
43996 silly install resolved 'pattern' ],
43996 silly install resolved devDependencies: { mocha: '*' },
43996 silly install resolved readme: '# ansi-regex [![Build Status](https://travis-ci.org/sindresorhus/ansi-regex.svg?branch=master)](https://travis-ci.org/sindresorhus/ansi-regex)\n\n> Regular expression for matching [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)\n\n\n## Install\n\n```sh\n$ npm install --save ansi-regex\n```\n\n\n## Usage\n\n```js\nvar ansiRegex = require(\'ansi-regex\');\n\nansiRegex().test(\'\\u001b[4mcake\\u001b[0m\');\n//=> true\n\nansiRegex().test(\'cake\');\n//=> false\n\n\'\\u001b[4mcake\\u001b[0m\'.match(ansiRegex());\n//=> [\'\\u001b[4m\', \'\\u001b[0m\']\n```\n\n*It\'s a function so you can create multiple instances. Regexes with the global flag will have the `.lastIndex` property changed for each call to methods on the instance. Therefore reusing the instance with multiple calls will not work as expected for `.test()`.*\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n',
43996 silly install resolved readmeFilename: 'readme.md',
43996 silly install resolved bugs: { url: 'https://github.com/sindresorhus/ansi-regex/issues' },
43996 silly install resolved homepage: 'https://github.com/sindresorhus/ansi-regex#readme',
43996 silly install resolved _id: 'ansi-regex@1.1.1',
43996 silly install resolved _shasum: '41c847194646375e6a1a5d10c3ca054ef9fc980d',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz' },
43996 silly install resolved { name: 'through',
43996 silly install resolved version: '2.3.8',
43996 silly install resolved description: 'simplified stream construction',
43996 silly install resolved main: 'index.js',
43996 silly install resolved scripts: { test: 'set -e; for t in test/*.js; do node $t; done' },
43996 silly install resolved devDependencies: { 'stream-spec': '~0.3.5', tape: '~2.3.2', from: '~0.1.3' },
43996 silly install resolved keywords: [ 'stream', 'streams', 'user-streams', 'pipe' ],
43996 silly install resolved author:
43996 silly install resolved { name: 'Dominic Tarr',
43996 silly install resolved email: 'dominic.tarr@gmail.com',
43996 silly install resolved url: 'dominictarr.com' },
43996 silly install resolved license: 'MIT',
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+https://github.com/dominictarr/through.git' },
43996 silly install resolved homepage: 'https://github.com/dominictarr/through',
43996 silly install resolved testling: { browsers: [Object], files: 'test/*.js' },
43996 silly install resolved readme: '#through\n\n[![build status](https://secure.travis-ci.org/dominictarr/through.png)](http://travis-ci.org/dominictarr/through)\n[![testling badge](https://ci.testling.com/dominictarr/through.png)](https://ci.testling.com/dominictarr/through)\n\nEasy way to create a `Stream` that is both `readable` and `writable`. \n\n* Pass in optional `write` and `end` methods.\n* `through` takes care of pause/resume logic if you use `this.queue(data)` instead of `this.emit(\'data\', data)`.\n* Use `this.pause()` and `this.resume()` to manage flow.\n* Check `this.paused` to see current flow state. (`write` always returns `!this.paused`).\n\nThis function is the basis for most of the synchronous streams in \n[event-stream](http://github.com/dominictarr/event-stream).\n\n``` js\nvar through = require(\'through\')\n\nthrough(function write(data) {\n this.queue(data) //data *must* not be null\n },\n function end () { //optional\n this.queue(null)\n })\n```\n\nOr, can also be used _without_ buffering on pause, use `this.emit(\'data\', data)`,\nand this.emit(\'end\')\n\n``` js\nvar through = require(\'through\')\n\nthrough(function write(data) {\n this.emit(\'data\', data)\n //this.pause() \n },\n function end () { //optional\n this.emit(\'end\')\n })\n```\n\n## Extended Options\n\nYou will probably not need these 99% of the time.\n\n### autoDestroy=false\n\nBy default, `through` emits close when the writable\nand readable side of the stream has ended.\nIf that is not desired, set `autoDestroy=false`.\n\n``` js\nvar through = require(\'through\')\n\n//like this\nvar ts = through(write, end, {autoDestroy: false})\n//or like this\nvar ts = through(write, end)\nts.autoDestroy = false\n```\n\n## License\n\nMIT / Apache2\n',
43996 silly install resolved readmeFilename: 'readme.markdown',
43996 silly install resolved bugs: { url: 'https://github.com/dominictarr/through/issues' },
43996 silly install resolved _id: 'through@2.3.8',
43996 silly install resolved _shasum: '0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/through/-/through-2.3.8.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/through/-/through-2.3.8.tgz' },
43996 silly install resolved { name: 'lodash',
43996 silly install resolved version: '3.10.1',
43996 silly install resolved description: 'The modern build of lodash modular utilities.',
43996 silly install resolved homepage: 'https://lodash.com/',
43996 silly install resolved icon: 'https://lodash.com/icon.svg',
43996 silly install resolved license: 'MIT',
43996 silly install resolved main: 'index.js',
43996 silly install resolved keywords: [ 'modules', 'stdlib', 'util' ],
43996 silly install resolved author:
43996 silly install resolved { name: 'John-David Dalton',
43996 silly install resolved email: 'john.david.dalton@gmail.com',
43996 silly install resolved url: 'http://allyoucanleet.com/' },
43996 silly install resolved contributors: [ [Object], [Object], [Object], [Object], [Object] ],
43996 silly install resolved repository: { type: 'git', url: 'git+https://github.com/lodash/lodash.git' },
43996 silly install resolved scripts: { test: 'echo "See https://travis-ci.org/lodash/lodash-cli for testing details."' },
43996 silly install resolved readme: '# lodash v3.10.1\n\nThe [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [Node.js](http://nodejs.org/)/[io.js](https://iojs.org/) modules.\n\nGenerated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):\n```bash\n$ lodash modularize modern exports=node -o ./\n$ lodash modern -d -o ./index.js\n```\n\n## Installation\n\nUsing npm:\n\n```bash\n$ {sudo -H} npm i -g npm\n$ npm i --save lodash\n```\n\nIn Node.js/io.js:\n\n```js\n// load the modern build\nvar _ = require(\'lodash\');\n// or a method category\nvar array = require(\'lodash/array\');\n// or a method (great for smaller builds with browserify/webpack)\nvar chunk = require(\'lodash/array/chunk\');\n```\n\nSee the [package source](https://github.com/lodash/lodash/tree/3.10.1-npm) for more details.\n\n**Note:**<br>\nDon’t assign values to the [special variable](http://nodejs.org/api/repl.html#repl_repl_features) `_` when in the REPL.<br>\nInstall [n_](https://www.npmjs.com/package/n_) for a REPL that includes lodash by default.\n\n## Module formats\n\nlodash is also available in a variety of other builds & module formats.\n\n * npm packages for [modern](https://www.npmjs.com/package/lodash), [compatibility](https://www.npmjs.com/package/lodash-compat), & [per method](https://www.npmjs.com/browse/keyword/lodash-modularized) builds\n * AMD modules for [modern](https://github.com/lodash/lodash/tree/3.10.1-amd) & [compatibility](https://github.com/lodash/lodash-compat/tree/3.10.1-amd) builds\n * ES modules for the [modern](https://github.com/lodash/lodash/tree/3.10.1-es) build\n\n## Further Reading\n\n * [API Documentation](https://lodash.com/docs)\n * [Build Differences](https://github.com/lodash/lodash/wiki/Build-Differences)\n * [Changelog](https://github.com/lodash/lodash/wiki/Changelog)\n * [Roadmap](https://github.com/lodash/lodash/wiki/Roadmap)\n * [More Resources](https://github.com/lodash/lodash/wiki/Resources)\n\n## Features\n\n * ~100% [code coverage](https://coveralls.io/r/lodash)\n * Follows [semantic versioning](http://semver.org/) for releases\n * [Lazily evaluated](http://filimanjaro.com/blog/2014/introducing-lazy-evaluation/) chaining\n * [_(…)](https://lodash.com/docs#_) supports implicit chaining\n * [_.ary](https://lodash.com/docs#ary) & [_.rearg](https://lodash.com/docs#rearg) to change function argument limits & order\n * [_.at](https://lodash.com/docs#at) for cherry-picking collection values\n * [_.attempt](https://lodash.com/docs#attempt) to execute functions which may error without a try-catch\n * [_.before](https://lodash.com/docs#before) to complement [_.after](https://lodash.com/docs#after)\n * [_.bindKey](https://lodash.com/docs#bindKey) for binding [*“lazy”*](http://michaux.ca/articles/lazy-function-definition-pattern) defined methods\n * [_.chunk](https://lodash.com/docs#chunk) for splitting an array into chunks of a given size\n * [_.clone](https://lodash.com/docs#clone) supports shallow cloning of `Date` & `RegExp` objects\n * [_.cloneDeep](https://lodash.com/docs#cloneDeep) for deep cloning arrays & objects\n * [_.curry](https://lodash.com/docs#curry) & [_.curryRight](https://lodash.com/docs#curryRight) for creating [curried](http://hughfdjackson.com/javascript/why-curry-helps/) functions\n * [_.debounce](https://lodash.com/docs#debounce) & [_.throttle](https://lodash.com/docs#throttle) are cancelable & accept options for more control\n * [_.defaultsDeep](https://lodash.com/docs#defaultsDeep) for recursively assigning default properties\n * [_.fill](https://lodash.com/docs#fill) to fill arrays with values\n * [_.findKey](https://lodash.com/docs#findKey) for finding keys\n * [_.flow](https://lodash.com/docs#flow) to complement [_.flowRight](https://lodash.com/docs#flowRight) (a.k.a `_.compose`)\n * [_.forEach](https://lodash.com/docs#forEach) supports exiting early\n * [_.forIn](https://lodash.com/docs#forIn) for iterating all enumerable properties\n * [_.forOwn](https://lodash.com/docs#forOwn) for iterating own properties\n * [_.get](https://lodash.com/docs#get) & [_.set](https://lodash.com/docs#set) for deep property getting & setting\n * [_.gt](https://lodash.com/docs#gt), [_.gte](https://lodash.com/docs#gte), [_.lt](https://lodash.com/docs#lt), & [_.lte](https://lodash.com/docs#lte) relational methods\n * [_.inRange](https://lodash.com/docs#inRange) for checking whether a number is within a given range\n * [_.isNative](https://lodash.com/docs#isNative) to check for native functions\n * [_.isPlainObject](https://lodash.com/docs#isPlainObject) & [_.toPlainObject](https://lodash.com/docs#toPlainObject) to check for & convert to `Object` objects\n * [_.isTypedArray](https://lodash.com/docs#isTypedArray) to check for typed arrays\n * [_.mapKeys](https://lodash.com/docs#mapKeys) for mapping keys to an object\n * [_.matches](https://lodash.com/docs#matches) supports deep object comparisons\n * [_.matchesProperty](https://lodash.com/docs#matchesProperty) to complement [_.matches](https://lodash.com/docs#matches) & [_.property](https://lodash.com/docs#property)\n * [_.merge](https://lodash.com/docs#merge) for a deep [_.extend](https://lodash.com/docs#extend)\n * [_.method](https://lodash.com/docs#method) & [_.methodOf](https://lodash.com/docs#methodOf) to create functions that invoke methods\n * [_.modArgs](https://lodash.com/docs#modArgs) for more advanced functional composition\n * [_.parseInt](https://lodash.com/docs#parseInt) for consistent cross-environment behavior\n * [_.pull](https://lodash.com/docs#pull), [_.pullAt](https://lodash.com/docs#pullAt), & [_.remove](https://lodash.com/docs#remove) for mutating arrays\n * [_.random](https://lodash.com/docs#random) supports returning floating-point numbers\n * [_.restParam](https://lodash.com/docs#restParam) & [_.spread](https://lodash.com/docs#spread) for applying rest parameters & spreading arguments to functions\n * [_.runInContext](https://lodash.com/docs#runInContext) for collisionless mixins & easier mocking\n * [_.slice](https://lodash.com/docs#slice) for creating subsets of array-like values\n * [_.sortByAll](https://lodash.com/docs#sortByAll) & [_.sortByOrder](https://lodash.com/docs#sortByOrder) for sorting by multiple properties & orders\n * [_.support](https://lodash.com/docs#support) for flagging environment features\n * [_.template](https://lodash.com/docs#template) supports [*“imports”*](https://lodash.com/docs#templateSettings-imports) options & [ES template delimiters](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literal-lexical-components)\n * [_.transform](https://lodash.com/docs#transform) as a powerful alternative to [_.reduce](https://lodash.com/docs#reduce) for transforming objects\n * [_.unzipWith](https://lodash.com/docs#unzipWith) & [_.zipWith](https://lodash.com/docs#zipWith) to specify how grouped values should be combined\n * [_.valuesIn](https://lodash.com/docs#valuesIn) for getting values of all enumerable properties\n * [_.xor](https://lodash.com/docs#xor) to complement [_.difference](https://lodash.com/docs#difference), [_.intersection](https://lodash.com/docs#intersection), & [_.union](https://lodash.com/docs#union)\n * [_.add](https://lodash.com/docs#add), [_.round](https://lodash.com/docs#round), [_.sum](https://lodash.com/docs#sum), &\n [more](https://lodash.com/docs "_.ceil & _.floor") math methods\n * [_.bind](https://lodash.com/docs#bind), [_.curry](https://lodash.com/docs#curry), [_.partial](https://lodash.com/docs#partial), &\n [more](https://lodash.com/docs "_.bindKey, _.curryRight, _.partialRight") support customizable argument placeholders\n * [_.capitalize](https://lodash.com/docs#capitalize), [_.trim](https://lodash.com/docs#trim), &\n [more](https://lodash.com/docs "_.camelCase, _.deburr, _.endsWith, _.escapeRegExp, _.kebabCase, _.pad, _.padLeft, _.padRight, _.repeat, _.snakeCase, _.startCase, _.startsWith, _.trimLeft, _.trimRight, _.trunc, _.words") string methods\n * [_.clone](https://lodash.com/docs#clone), [_.isEqual](https://lodash.com/docs#isEqual), &\n [more](https://lodash.com/docs "_.assign, _.cloneDeep, _.merge") accept customizer callbacks\n * [_.dropWhile](https://lodash.com/docs#dropWhile), [_.takeWhile](https://lodash.com/docs#takeWhile), &\n [more](https://lodash.com/docs "_.drop, _.dropRight, _.dropRightWhile, _.take, _.takeRight, _.takeRightWhile") to complement [_.first](https://lodash.com/docs#first), [_.initial](https://lodash.com/docs#initial), [_.last](https://lodash.com/docs#last), & [_.rest](https://lodash.com/docs#rest)\n * [_.findLast](https://lodash.com/docs#findLast), [_.findLastKey](https://lodash.com/docs#findLastKey), &\n [more](https://lodash.com/docs "_.curryRight, _.dropRight, _.dropRightWhile, _.flowRight, _.forEachRight, _.forInRight, _.forOwnRight, _.padRight, partialRight, _.takeRight, _.trimRight, _.takeRightWhile") right-associative methods\n * [_.includes](https://lodash.com/docs#includes), [_.toArray](https://lodash.com/docs#toArray), &\n [more](https://lodash.com/docs "_.at, _.countBy, _.every, _.filter, _.find, _.findLast, _.findWhere, _.forEach, _.forEachRight, _.groupBy, _.indexBy, _.invoke, _.map, _.max, _.min, _.partition, _.pluck, _.reduce, _.reduceRight, _.reject, _.shuffle, _.size, _.some, _.sortBy, _.sortByAll, _.sortByOrder, _.sum, _.where") accept strings\n * [_#commit](https://lodash.com/docs#prototype-commit) & [_#plant](https://lodash.com/docs#prototype-plant) for working with chain sequences\n * [_#thru](https://lodash.com/docs#thru) to pass values thru a chain sequence\n\n## Support\n\nTested in Chrome 43-44, Firefox 38-39, IE 6-11, MS Edge, Safari 5-8, ChakraNode 0.12.2, io.js 2.5.0, Node.js 0.8.28, 0.10.40, & 0.12.7, PhantomJS 1.9.8, RingoJS 0.11, & Rhino 1.7.6.\nAutomated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available. Special thanks to [Sauce Labs](https://saucelabs.com/) for providing automated browser testing.\n',
43996 silly install resolved readmeFilename: 'README.md',
43996 silly install resolved bugs: { url: 'https://github.com/lodash/lodash/issues' },
43996 silly install resolved _id: 'lodash@3.10.1',
43996 silly install resolved _shasum: '5bf45e8e49ba4189e17d482789dfd15bd140b7b6',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' },
43996 silly install resolved { name: 'rx',
43996 silly install resolved title: 'Reactive Extensions for JavaScript (RxJS)',
43996 silly install resolved description: 'Library for composing asynchronous and event-based operations in JavaScript',
43996 silly install resolved version: '2.5.3',
43996 silly install resolved homepage: 'https://github.com/Reactive-Extensions/RxJS',
43996 silly install resolved author:
43996 silly install resolved { name: 'Cloud Programmability Team',
43996 silly install resolved url: 'https://github.com/Reactive-Extensions/RxJS/blob/master/authors.txt' },
43996 silly install resolved repository:
43996 silly install resolved { type: 'git',
43996 silly install resolved url: 'git+https://github.com/Reactive-Extensions/RxJS.git' },
43996 silly install resolved license: 'Apache-2.0',
43996 silly install resolved bugs: { url: 'https://github.com/Reactive-Extensions/RxJS/issues' },
43996 silly install resolved jam: { main: 'dist/rx.all.js' },
43996 silly install resolved browser: { 'index.js': 'dist/rx.all.js' },
43996 silly install resolved dependencies: {},
43996 silly install resolved devDependencies:
43996 silly install resolved { benchmark: '*',
43996 silly install resolved 'grunt-cli': '*',
43996 silly install resolved grunt: '*',
43996 silly install resolved 'grunt-contrib-copy': '*',
43996 silly install resolved 'grunt-contrib-jshint': '*',
43996 silly install resolved 'grunt-contrib-connect': '*',
43996 silly install resolved 'grunt-contrib-uglify': '*',
43996 silly install resolved 'grunt-contrib-concat': '*',
43996 silly install resolved 'grunt-contrib-qunit': '*',
43996 silly install resolved 'grunt-contrib-watch': '*',
43996 silly install resolved 'grunt-saucelabs': '*',
43996 silly install resolved 'grunt-jscs': '*',
43996 silly install resolved 'load-grunt-tasks': '*' },
43996 silly install resolved keywords: [ 'LINQ', 'FRP', 'Reactive', 'Events', 'Rx', 'RxJS' ],
43996 silly install resolved main: 'index.js',
43996 silly install resolved scripts: { test: 'grunt' },
43996 silly install resolved readme: '[![Build Status](https://travis-ci.org/Reactive-Extensions/RxJS.png)](https://travis-ci.org/Reactive-Extensions/RxJS)\n[![Inline docs](http://inch-ci.org/github/Reactive-Extensions/RxJS.svg?branch=master)](http://inch-ci.org/github/Reactive-Extensions/RxJS)\n[![GitHub version](http://img.shields.io/github/tag/reactive-extensions/rxjs.svg)](https://github.com/Reactive-Extensions/RxJS)\n[![NPM version](http://img.shields.io/npm/v/rx.svg)](https://npmjs.org/package/rx)\n[![Downloads](http://img.shields.io/npm/dm/rx.svg)](https://npmjs.org/package/rx)\n[![NuGet](http://img.shields.io/nuget/v/RxJS-All.svg)](http://www.nuget.org/packages/RxJS-All/)\n[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)\n\n**[The Need to go Reactive](#the-need-to-go-reactive)** |\n**[About the Reactive Extensions](#about-the-reactive-extensions)** |\n**[Batteries Included](#batteries-included)** |\n**[Why RxJS?](#why-rxjs)** |\n**[Dive In!](#dive-in)** |\n**[Resources](#resources)** |\n**[Getting Started](#getting-started)** |\n**[What about my libraries?](#what-about-my-libraries)** |\n**[Compatibility](#compatibility)** |\n**[Contributing](#contributing)** |\n**[License](#license)**\n\n# The Reactive Extensions for JavaScript (RxJS) <sup>2.5</sup>... #\n*...is a set of libraries to compose asynchronous and event-based programs using observable collections and [Array#extras](http://blogs.msdn.com/b/ie/archive/2010/12/13/ecmascript-5-part-2-array-extras.aspx) style composition in JavaScript*\n\nThe project is actively developed by [Microsoft Open Technologies, Inc.](http://msopentech.com/), in collaboration with a community of open source developers.\n\n## The Need to go Reactive ##\n\nApplications, especially on the web have changed over the years from being a simple static page, to DHTML with animations, to the Ajax revolution. Each time, we\'re adding more complexity, more data, and asynchronous behavior to our applications. How do we manage it all? How do we scale it? By moving towards "Reactive Architectures" which are event-driven, resilient and responsive. With the Reactive Extensions, you have all the tools you need to help build these systems.\n\n## About the Reactive Extensions ##\n\nThe Reactive Extensions for JavaScript (RxJS) is a set of libraries for composing asynchronous and event-based programs using observable sequences and fluent query operators that many of you already know by [Array#extras](http://blogs.msdn.com/b/ie/archive/2010/12/13/ecmascript-5-part-2-array-extras.aspx) in JavaScript. Using RxJS, developers represent asynchronous data streams with Observables, query asynchronous data streams using our many operators, and parameterize the concurrency in the asynchronous data streams using Schedulers. Simply put, RxJS = Observables + Operators + Schedulers.\n\nWhether you are authoring a web-based application in JavaScript or a server-side application in Node.js, you have to deal with asynchronous and event-based programming as a matter of course. Although some patterns are emerging such as the Promise pattern, handling exceptions, cancellation, and synchronization is difficult and error-prone.\n\nUsing RxJS, you can represent multiple asynchronous data streams (that come from diverse sources, e.g., stock quote, tweets, computer events, web service requests, etc.), and subscribe to the event stream using the Observer object. The Observable notifies the subscribed Observer instance whenever an event occurs.\n\nBecause observable sequences are data streams, you can query them using standard query operators implemented by the Observable type. Thus you can filter, project, aggregate, compose and perform time-based operations on multiple events easily by using these operators. In addition, there are a number of other reactive stream specific operators that allow powerful queries to be written. Cancellation, exceptions, and synchronization are also handled gracefully by using the methods on the Observable object.\n\nBut the best news of all is that you already know how to program like this. Take for example the following JavaScript code, where we get some stock data and then manipulate and then iterate the results.\n\n```js\n/* Get stock data somehow */\nvar source = getStockData();\n\nsource\n .filter(function (quote) {\n return quote.price > 30;\n })\n .map(function (quote) {\n return quote.price;\n })\n .forEach(function (price) {\n console.log(\'Prices higher than $30: $\' + price);\n });\n```\n\nNow what if this data were to come as some sort of event, for example a stream, such as as a WebSocket, then we could pretty much write the same query to iterate our data, with very little change.\n\n```js\n/* Get stock data somehow */\nvar source = getAsyncStockData();\n\nvar subscription = source\n .filter(function (quote) {\n return quote.price > 30;\n })\n .map(function (quote) {\n return quote.price;\n })\n .forEach(\n function (price) {\n console.log(\'Prices higher than $30: $\' + price);\n },\n function (err) {\n console.log(\'Something went wrong: \' + err.message);\n });\n\n/* When we\'re done */\nsubscription.dispose();\n```\n\nThe only difference is that we can handle the errors inline with our subscription. And when we\'re no longer interested in receiving the data as it comes streaming in, we call `dispose` on our subscription.\n\n## Batteries Included ##\n\nSure, there are a lot of libraries to get started with RxJS. Confused on where to get started? Start out with the complete set of operators with [`rx.all.js`](doc/libraries/rx.complete.md), then you can reduce it to the number of operators that you really need, and perhaps stick with something as small as [`rx.lite.js`](doc/libraries/rx.lite.md).\n\nThis set of libraries include:\n\n- [`rx.all.js`](doc/libraries/rx.complete.md) - complete version of RxJS with all operators, minus the testing operators, and comes with a compat file for older browsers.\n- [`rx.lite.js`](doc/libraries/rx.lite.md) - lite version with event bindings, creation, time and standard query operators with a compat file for older browsers. For most operations, this is the file you\'ll want to use unless you want the full power of RxJS.\n- [`rx.lite.extras.js`](doc/libraries/rx.lite.extras.md) - the operators missing from rx.lite.js that can be found in rx.js.\n- [`rx.js`](doc/libraries/rx.md) - core library for ES5 compliant browsers and runtimes plus compatibility for older browsers.\n- [`rx.aggregates.js`](doc/libraries/rx.aggregates.md) - aggregation event processing query operations\n- [`rx.async.js`](doc/libraries/rx.async.md) - async operations such as events, callbacks and promises plus a compat file for older browsers.\n- [`rx.backpressure.js`](doc/libraries/rx.backpressure.md) - backpressure operators such as pause/resume and controlled.\n- [`rx.binding.js`](doc/libraries/rx.binding.md) - binding operators including multicast, publish, publishLast, publishValue, and replay\n- [`rx.coincidence.js`](doc/libraries/rx.coincidence.md) - reactive coincidence join event processing query operations\n- [`rx.experimental.js`](doc/libraries/rx.experimental.md) - experimental operators including imperative operators and forkJoin\n- [`rx.joinpatterns.js`](doc/libraries/rx.joinpatterns.md) - join patterns event processing query operations\n- [`rx.testing.js`](doc/libraries/rx.testing.md) - used to write unit tests for complex event processing queries\n- [`rx.time.js`](doc/libraries/rx.time.md) - time-based event processing query operations\n- [`rx.virtualtime.js`](doc/libraries/rx.virtualtime.md) - virtual-time-based schedulers\n\n## Why RxJS? ##\n\nOne question you may ask yourself, is why RxJS? What about Promises? Promises are good for solving asynchronous operations such as querying a service with an XMLHttpRequest, where the expected behavior is one value and then completion. The Reactive Extensions for JavaScript unifies both the world of Promises, callbacks as well as evented data such as DOM Input, Web Workers, Web Sockets. Once we have unified these concepts, this enables rich composition.\n\nTo give you an idea about rich composition, we can create an autocompletion service which takes the user input from a text input and then query a service, making sure not to flood the service with calls for every key stroke, but instead allow to go at a more natural pace.\n\nFirst, we\'ll reference the JavaScript files, including jQuery, although RxJS has no dependencies on jQuery...\n```html\n<script src="http://code.jquery.com/jquery.js"></script>\n<script src="rx.lite.js"></script>\n```\nNext, we\'ll get the user input from an input, listening to the keyup event by using the `Rx.Observable.fromEvent` method. This will either use the event binding from [jQuery](http://jquery.com), [Zepto](http://zeptojs.com/), [AngularJS](https://angularjs.org/), [Backbone.js](http://backbonejs.org/) and [Ember.js](http://emberjs.com/) if available, and if not, falls back to the native event binding. This gives you consistent ways of thinking of events depending on your framework, so there are no surprises.\n\n```js\nvar $input = $(\'#input\'),\n $results = $(\'#results\');\n\n/* Only get the value from each key up */\nvar keyups = Rx.Observable.fromEvent($input, \'keyup\')\n .map(function (e) {\n return e.target.value;\n })\n .filter(function (text) {\n return text.length > 2;\n });\n\n/* Now debounce the input for 500ms */\nvar debounced = keyups\n .debounce(500 /* ms */);\n\n/* Now get only distinct values, so we eliminate the arrows and other control characters */\nvar distinct = debounced\n .distinctUntilChanged();\n```\n\nNow, let\'s query Wikipedia! In RxJS, we can instantly bind to any [Promises A+](https://github.com/promises-aplus/promises-spec) implementation through the `Rx.Observable.fromPromise` method or by just directly returning it, and we wrap it for you.\n\n```js\nfunction searchWikipedia (term) {\n return $.ajax({\n url: \'http://en.wikipedia.org/w/api.php\',\n dataType: \'jsonp\',\n data: {\n action: \'opensearch\',\n format: \'json\',\n search: term\n }\n }).promise();\n}\n```\n\nOnce that is created, now we can tie together the distinct throttled input and then query the service. In this case, we\'ll call `flatMapLatest` to get the value and ensure that we\'re not introducing any out of order sequence calls.\n\n```js\nvar suggestions = distinct\n .flatMapLatest(searchWikipedia);\n```\n\nFinally, we call the `forEach` method on our observable sequence to start pulling data.\n\n```js\nsuggestions.forEach(\n function (data) {\n $results\n .empty()\n .append ($.map(data[1], function (value) {\n return $(\'<li>\').text(value);\n }));\n },\n function (error) {\n $results\n .empty()\n .append($(\'<li>\'))\n .text(\'Error:\' + error);\n });\n```\n\nAnd there you have it!\n\n## Dive In! ##\n\nPlease check out:\n\n - [The full documentation](https://github.com/Reactive-Extensions/RxJS/tree/master/doc)\n - [Our many great examples](https://github.com/Reactive-Extensions/RxJS/tree/master/examples)\n - [Our design guidelines](https://github.com/Reactive-Extensions/RxJS/tree/master/doc/designguidelines)\n - [Our contribution guidelines](https://github.com/Reactive-Extensions/RxJS/tree/master/doc/contributing)\n - [Our complete Unit Tests](https://github.com/Reactive-Extensions/RxJS/tree/master/tests)\n - [Our recipes](https://github.com/Reactive-Extensions/RxJS/wiki/Recipes)\n\n## Resources\n\n- Contact us\n - [Tech Blog](http://blogs.msdn.com/b/rxteam)\n - [Twitter @ReactiveX](https://twitter.com/ReactiveX)\n - [Twitter @OpenAtMicrosoft](http://twitter.com/OpenAtMicrosoft)\n - [StackOverflow rxjs](http://stackoverflow.com/questions/tagged/rxjs)\n - [Slack](http://reactivex.slack.com)\n\n- Tutorials\n - [The introduction to Reactive Programming you\'ve been missing](https://gist.github.com/staltz/868e7e9bc2a7b8c1f754)\n - [2 minute introduction to Rx](https://medium.com/@andrestaltz/2-minute-introduction-to-rx-24c8ca793877)\n - [Learn RxJS](https://github.com/jhusain/learnrx)\n - [RxJS Koans](https://github.com/Reactive-Extensions/RxJSKoans)\n - [RxJS Workshop](https://github.com/Reactive-Extensions/BuildStuffWorkshop)\n - [Rx Workshop](http://rxworkshop.codeplex.com/)\n - [Reactive Programming and MVC](http://aaronstacy.com/writings/reactive-programming-and-mvc/)\n\n- Reference Material\n - [Rx Marbles](http://rxmarbles.com/)\n - [RxJS GitBook](http://xgrommx.github.io/rx-book/)\n - [Intro to Rx](http://introtorx.com/)\n - [101 Rx Samples Wiki](http://rxwiki.wikidot.com/101samples)\n - [Rx Design Guidelines](https://github.com/Reactive-Extensions/RxJS/tree/master/doc/designguidelines)\n - [Beginners Guide to Rx](http://msdn.microsoft.com/en-us/data/gg577611)\n - [Visualizing Reactive Streams](http://jaredly.github.io/2015/03/06/visualizing-reactive-streams-hot-and-cold/)\n\n- Community Examples\n - [React](http://facebook.github.io/react/)\n - [Rx-React](https://github.com/fdecampredon/rx-react)\n - [RxReact](https://github.com/AlexMost/RxReact)\n - [cycle-react](https://github.com/pH200/cycle-react)\n - [React RxJS Autocomplete](https://github.com/eliseumds/react-autocomplete)\n - [React RxJS TODO MVC](https://github.com/fdecampredon/react-rxjs-todomvc)\n - [Rx TODO MVC](https://github.com/footballradar/rx-todomvc)\n - [React RxJS Router](https://github.com/kmcclosk/reactjs-rxjs-example)\n - [React + RxJS + Angular 2.0 di.js TODO MVC](https://github.com/joelhooks/react-rxjs-angular-di-todomvc)\n - [React + RxJS Reactive Cube](https://github.com/hugobessaa/cubactive)\n - [Real-Time with React + RxJS + Meteor](https://medium.com/@bobiblazeski/functional-reactive-interfaces-e8de034de6bd)\n - [React + RxJS Flow](https://github.com/justinwoo/react-rxjs-flow)\n - [Reactive Widgets](https://github.com/zxbodya/reactive-widgets)\n - [React RxJS Infinite Scroll](https://github.com/justinwoo/react-rxjs-scroll)\n - [Flux](http://facebook.github.io/flux/)\n - [Rx-Flux](https://github.com/fdecampredon/rx-flux)\n - [ReactiveFlux](https://github.com/codesuki/reactive-flux)\n - [Thundercats.js](https://github.com/r3dm/thundercats)\n - [Flurx](https://github.com/cell303/flurx)\n - [RR](https://github.com/winsonwq/RR)\n - [Ember](http://emberjs.com/)\n - [RxEmber](https://github.com/blesh/RxEmber)\n - [AngularJS](http://angularjs.org)\n - [Ninya.io - Angular + RxJS + rx.angular.js](https://github.com/ninya-io/ninya.io) - [Site](http://stackwho.herokuapp.com/)\n - [The Car Game](https://github.com/mikkark/TheCarGame) - [Site](https://thecargame.herokuapp.com/) - [Blog Post](https://allthingsarchitectural.wordpress.com/2014/11/24/game-programming-with-angular-rxjs-and-node-js/)\n - [Cycle](https://github.com/staltz/cycle)\n - [Cycle TODO MVC](https://github.com/staltz/todomvc-cycle)\n - [WebRx](https://github.com/oliverw/webrx)\n - Everything else\n - [RxVision](http://jaredly.github.io/rxvision/)\n - [Mario Elm Example](http://fudini.github.io/rx/mario.html)\n - [Firebase + RxJS](http://blog.cryptoguru.com/2014/11/frp-using-rxjs-and-firebase.html) \n - [Reactive Trader](https://github.com/AdaptiveConsulting/ReactiveTrader) - [Site](https://reactivetrader.azurewebsites.net/)\n - [NPM Dependencies](https://www.npmjs.com/browse/depended/rx)\n\n- Presentations\n - Don\'t Cross the Streams - Cascadia.js 2012 [slides/demos](http://www.slideshare.net/mattpodwysocki/cascadiajs-dont-cross-the-streams) | [video](http://www.youtube.com/watch?v=FqBq4uoiG0M)\n - Curing Your Asynchronous Blues - Strange Loop 2013 [slides/demos](https://github.com/Reactive-Extensions/StrangeLoop2013) | [video](http://www.infoq.com/presentations/rx-event-processing)\n - Streaming and event-based programming using FRP and RxJS - FutureJS 2014 [slides/demos](https://github.com/Reactive-Extensions/FutureJS) | [video](https://www.youtube.com/watch?v=zlERo_JMGCw)\n - [Tyrannosaurus Rx](http://yobriefca.se/presentations/tyrannosaurus-rx.pdf) - [James Hughes](http://twitter.com/kouphax)\n - Taming Asynchronous Workflows with Functional Reactive Programming - EuroClojure - [Leonardo Borges](https://twitter.com/leonardo_borges) [slides](http://www.slideshare.net/borgesleonardo/functional-reactive-programming-compositional-event-systems) | [video](http://www.slideshare.net/borgesleonardo/functional-reactive-programming-compositional-event-systems)\n- Reactive All the Things - ng-conf 2015 - [Martin Gontovnikas](https://twitter.com/mgonto/) & [Ben Lesh](https://twitter.com/BenLesh)\n - [Slides](http://mgonto.github.io/reactive-all-the-things-talk/#1)\n - [Video](https://www.youtube.com/watch?v=zbBVG8bOoXk&feature=youtu.be&app=desktop)\n\n- Videos\n - [Practical Rx with Matthew Podwysocki, Bart de Smet and Jafar Husain](http://channel9.msdn.com/posts/Bart-De-Smet-Jafar-Hussain-Matthew-Podwysocki-Pragmatic-Rx)\n - [Netflix and RxJS](http://channel9.msdn.com/posts/Rx-and-Netflix)\n - [Hello RxJS - Channel 9](http://channel9.msdn.com/Blogs/Charles/Introducing-RxJS-Reactive-Extensions-for-JavaScript)\n - [MIX 2011](http://channel9.msdn.com/events/MIX/MIX11/HTM07)\n - [RxJS Today and Tomorrow - Channel 9](http://channel9.msdn.com/Blogs/Charles/Matthew-Podwysocki-and-Bart-J-F-De-Smet-RxJS-Today-and-Tomorrow)\n - [Reactive Extensions Videos on Channel 9](http://channel9.msdn.com/Tags/reactive+extensions)\n - [Asynchronous JavaScript at Netflix - Netflix JavaScript Talks - Jafar Husain](https://www.youtube.com/watch?v=XRYN2xt11Ek)\n - [Asynchronous JavaScript at Netflix - MountainWest JavaScript 2014 - Jafar Husain](https://www.youtube.com/watch?v=XE692Clb5LU)\n - [Asynchronous JavaScript at Netflix - HTML5DevConf - Jafar Husain](https://www.youtube.com/watch?v=5uxSu-F5Kj0)\n - [Adding Even More Fun to Functional Programming With RXJS - Ryan Anklam](https://www.youtube.com/watch?v=8EExNfm0gt4)\n - [Reactive Angular - Devoxx France 2014 - Martin Gontovnikas](http://parleys.com/play/53677646e4b0593229b85841/chapter0/about)\n - [Reactive Game Programming for the Discerning Hipster - JSConf 2014 - Bodil Stokke](https://www.youtube.com/watch?v=x8mmAu7ZR9Y)\n\n- Podcasts\n - [.NET Rocks #907](http://dotnetrocks.com/default.aspx?showNum=907)\n - [JavaScript Jabber #83](http://javascriptjabber.com/083-jsj-frp-and-rxjs-with-matthew-podwysocki/)\n\n- Articles\n - [Your Mouse is a Database](http://queue.acm.org/detail.cfm?id=2169076)\n\n- Books\n - [RxJS](http://xgrommx.github.io/rx-book)\n - [Intro to Rx](http://www.amazon.com/Introduction-to-Rx-ebook/dp/B008GM3YPM/)\n - [Programming Reactive Extensions and LINQ](http://www.amazon.com/Programming-Reactive-Extensions-Jesse-Liberty/dp/1430237473/)\n\n## Getting Started\n\nThere are a number of ways to get started with RxJS. The files are available on [cdnjs](http://cdnjs.com/libraries/rxjs/) and [jsDelivr](http://www.jsdelivr.com/#!rxjs).\n\n### Custom Builds\n\nYou can use the [`rx-cli`](https://www.npmjs.org/package/rx-cli) to perform custom builds to create the RxJS you want:\n\n```bash\n$ rx --lite --compat --methods select,selectmany,takeuntil,fromevent\n```\n\n### Download the Source\n\n```bash\ngit clone https://github.com/Reactive-Extensions/rxjs.git\ncd ./rxjs\n```\n\n### Installing with [NPM](https://npmjs.org/)\n\n```bash`\n$ npm install rx\n$ npm install -g rx\n```\n\n### Using with Node.js and Ringo.js\n\n```js\nvar Rx = require(\'rx\');\n```\n\n### Installing with [Bower](http://bower.io/)\n\n```bash\n$ bower install rxjs\n```\n\n### Installing with [Jam](http://jamjs.org/)\n```bash\n$ jam install rx\n```\n### Installing All of RxJS via [NuGet](http://nuget.org/)\n```bash\n$ Install-Package RxJS-All\n```\n### Install individual packages via [NuGet](http://nuget.org/):\n\n Install-Package RxJS-All\n Install-Package RxJS-Lite\n Install-Package RxJS-Main\n Install-Package RxJS-Aggregates\n Install-Package RxJS-Async\n Install-Package RxJS-BackPressure\n Install-Package RxJS-Binding\n Install-Package RxJS-Coincidence\n Install-Package RxJS-Experimental\n Install-Package RxJS-JoinPatterns\n Install-Package RxJS-Testing\n Install-Package RxJS-Time\n\n### In a Browser:\n\n```html\n<!-- Just the core RxJS -->\n<script src="rx.js"></script>\n\n<!-- Or all of RxJS minus testing -->\n<script src="rx.all.js"></script>\n\n<!-- Or keeping it lite -->\n<script src="rx.lite.js"></script>\n```\n\n### Along with a number of our extras for RxJS:\n\n```html\n<script src="rx.aggregates.js"></script>\n<script src="rx.async.js"></script>\n<script src="rx.backpressure.js"></script>\n<script src="rx.binding.js"></script>\n<script src="rx.coincidencejs"></script>\n<script src="rx.experimental.js"></script>\n<script src="rx.joinpatterns.js"></script>\n<script src="rx.time.js"></script>\n<script src="rx.virtualtime.js"></script>\n<script src="rx.testing.js"></script>\n```\n\n### Using RxJS with an AMD loader such as Require.js\n\n```js\nrequire({\n \'paths\': {\n \'rx\': \'path/to/rx-lite.js\'\n }\n},\n[\'rx\'], function(Rx) {\n var obs = Rx.Observable.of(42);\n obs.forEach(function (x) { console.log(x); });\n});\n```\n\n## What about my libraries? ##\n\nThe Reactive Extensions for JavaScript have no external dependencies any library, so they\'ll work well with just about any library. We provide bridges and support for various libraries including:\n- [Node.js](https://www.npmjs.com/package/rx-node)\n- [React](http://facebook.github.io/react/)\n - [Rx-React](https://github.com/fdecampredon/rx-react)\n - [RxReact](https://github.com/AlexMost/RxReact)\n - [cycle-react](https://github.com/pH200/cycle-react)\n- [Flux](http://facebook.github.io/flux/)\n - [Rx-Flux](https://github.com/fdecampredon/rx-flux)\n - [ReactiveFlux](https://github.com/codesuki/reactive-flux)\n - [Thundercats.js](https://github.com/r3dm/thundercats)\n - [Flurx](https://github.com/cell303/flurx)\n - [RR](https://github.com/winsonwq/RR)\n- [Ember](http://emberjs.com/)\n - [RxEmber](https://github.com/blesh/RxEmber)\n- [AngularJS](https://github.com/Reactive-Extensions/rx.angular.js)\n- [HTML DOM](https://github.com/Reactive-Extensions/RxJS-DOM)\n- [jQuery (1.4+)](https://github.com/Reactive-Extensions/RxJS-jQuery)\n- [MooTools](https://github.com/Reactive-Extensions/RxJS-MooTools)\n- [Dojo 1.7+](https://github.com/Reactive-Extensions/RxJS-Dojo)\n- [ExtJS](https://github.com/Reactive-Extensions/RxJS-ExtJS)\n\n## Compatibility ##\n\nRxJS has been thoroughly tested against all major browsers and supports IE6+, Chrome 4+, FireFox 1+, and Node.js v0.4+.\n\n## Contributing ##\n\nThere are lots of ways to contribute to the project, and we appreciate our [contributors](https://github.com/Reactive-Extensions/RxJS/wiki/Contributors). If you wish to contribute, check out our [style guide]((https://github.com/Reactive-Extensions/RxJS/tree/master/doc/contributing)).\n\nYou can contribute by reviewing and sending feedback on code checkins, suggesting and trying out new features as they are implemented, submit bugs and help us verify fixes as they are checked in, as well as submit code fixes or code contributions of your own. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.\n\n## License ##\n\nCopyright (c) Microsoft Open Technologies, Inc. All rights reserved.\nMicrosoft Open Technologies would like to thank its contributors, a list\nof whom are at https://github.com/Reactive-Extensions/RxJS/wiki/Contributors.\n\nLicensed under the Apache License, Version 2.0 (the "License"); you\nmay not use this file except in compliance with the License. You may\nobtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an "AS IS" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\nimplied. See the License for the specific language governing permissions\nand limitations under the License.\n',
43996 silly install resolved readmeFilename: 'readme.md',
43996 silly install resolved _id: 'rx@2.5.3',
43996 silly install resolved _shasum: '21adc7d80f02002af50dae97fd9dbf248755f566',
43996 silly install resolved _resolved: 'https://registry.npmjs.org/rx/-/rx-2.5.3.tgz',
43996 silly install resolved _from: 'https://registry.npmjs.org/rx/-/rx-2.5.3.tgz' } ]
43997 info install readline2@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
43998 info install cli-width@1.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
43999 info install figures@1.3.5 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
44000 info install ansi-regex@1.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
44001 info install through@2.3.8 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
44002 info install lodash@3.10.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
44003 info install rx@2.5.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer
44004 info installOne readline2@0.1.1
44005 verbose installOne of readline2 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44006 info installOne cli-width@1.0.1
44007 verbose installOne of cli-width to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44008 info installOne figures@1.3.5
44009 verbose installOne of figures to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44010 info installOne ansi-regex@1.1.1
44011 verbose installOne of ansi-regex to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44012 info installOne through@2.3.8
44013 verbose installOne of through to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44014 info installOne lodash@3.10.1
44015 verbose installOne of lodash to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44016 info installOne rx@2.5.3
44017 verbose installOne of rx to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer not in flight; installing
44018 verbose lock using /home/lukas/.npm/_locks/sprintf-js-e22a25d03abc9ab5.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44019 verbose lock using /home/lukas/.npm/_locks/lodash-a248c46bc0e51efe.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44020 verbose lock using /home/lukas/.npm/_locks/cli-width-cc4aff427026c2d8.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44021 verbose lock using /home/lukas/.npm/_locks/figures-d6237e1a014528ac.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44022 verbose lock using /home/lukas/.npm/_locks/readline2-65eb9327b9c3348b.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44023 verbose lock using /home/lukas/.npm/_locks/ansi-regex-4f3feb81e8ff1eac.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44024 verbose lock using /home/lukas/.npm/_locks/through-ff9e8651fc467f3d.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44025 verbose lock using /home/lukas/.npm/_locks/lodash-ba742320fd377591.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44026 verbose lock using /home/lukas/.npm/_locks/rx-c1ccd036e0c302ce.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44027 silly install write writing sprintf-js 1.0.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44028 silly install write writing lodash 3.10.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44029 silly install write writing cli-width 1.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44030 silly install write writing figures 1.3.5 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44031 silly install write writing readline2 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44032 silly install write writing ansi-regex 1.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44033 silly install write writing through 2.3.8 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44034 silly install write writing lodash 3.10.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44035 silly install write writing rx 2.5.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44036 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44037 info linkStuff cjson@0.3.0
44038 silly linkStuff cjson@0.3.0 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules as its parent node_modules
44039 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44040 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44041 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44042 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44043 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44044 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44045 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44046 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash is being purged from base /home/lukas/ffsync/fxa-auth-server
44047 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44048 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js is being purged from base /home/lukas/ffsync/fxa-auth-server
44049 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44050 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width is being purged from base /home/lukas/ffsync/fxa-auth-server
44051 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44052 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash is being purged from base /home/lukas/ffsync/fxa-auth-server
44053 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44054 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx is being purged from base /home/lukas/ffsync/fxa-auth-server
44055 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44056 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex is being purged from base /home/lukas/ffsync/fxa-auth-server
44057 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44058 verbose tar unpack /home/lukas/.npm/lodash/3.10.1/package.tgz
44059 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44060 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash is being purged
44061 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash
44062 verbose tar unpack /home/lukas/.npm/sprintf-js/1.0.3/package.tgz
44063 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44064 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js is being purged
44065 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44066 verbose tar unpack /home/lukas/.npm/cli-width/1.0.1/package.tgz
44067 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44068 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width is being purged
44069 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44070 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44071 verbose tar unpack /home/lukas/.npm/lodash/3.10.1/package.tgz
44072 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44073 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash is being purged
44074 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/lodash
44075 verbose tar unpack /home/lukas/.npm/rx/2.5.3/package.tgz
44076 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44077 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx is being purged
44078 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/rx
44079 verbose tar unpack /home/lukas/.npm/ansi-regex/1.1.1/package.tgz
44080 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44081 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex is being purged
44082 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44083 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2 is being purged from base /home/lukas/ffsync/fxa-auth-server
44084 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44085 silly gunzTarPerm modes [ '775', '664' ]
44086 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures is being purged from base /home/lukas/ffsync/fxa-auth-server
44087 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44088 silly gunzTarPerm modes [ '775', '664' ]
44089 silly gunzTarPerm modes [ '775', '664' ]
44090 silly gunzTarPerm modes [ '775', '664' ]
44091 silly gunzTarPerm modes [ '775', '664' ]
44092 silly gunzTarPerm modes [ '775', '664' ]
44093 verbose tar unpack /home/lukas/.npm/readline2/0.1.1/package.tgz
44094 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44095 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2 is being purged
44096 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
44097 verbose tar unpack /home/lukas/.npm/figures/1.3.5/package.tgz
44098 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44099 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures is being purged
44100 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44101 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through is being purged from base /home/lukas/ffsync/fxa-auth-server
44102 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44103 silly gunzTarPerm modes [ '775', '664' ]
44104 silly gunzTarPerm modes [ '775', '664' ]
44105 verbose tar unpack /home/lukas/.npm/through/2.3.8/package.tgz
44106 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44107 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through is being purged
44108 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44109 silly gunzTarPerm modes [ '775', '664' ]
44110 silly gunzTarPerm extractEntry package.json
44111 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44112 silly gunzTarPerm extractEntry package.json
44113 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44114 silly gunzTarPerm extractEntry package.json
44115 silly gunzTarPerm modified mode [ 'package.json', 438, 436 ]
44116 silly gunzTarPerm extractEntry package.json
44117 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44118 silly gunzTarPerm extractEntry package.json
44119 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44120 silly gunzTarPerm extractEntry package.json
44121 silly gunzTarPerm extractEntry package.json
44122 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44123 silly gunzTarPerm extractEntry package.json
44124 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44125 silly gunzTarPerm extractEntry README.md
44126 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
44127 silly gunzTarPerm extractEntry LICENSE
44128 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
44129 verbose linkBins cjson@0.3.0
44130 verbose linkMans cjson@0.3.0
44131 verbose rebuildBundles cjson@0.3.0
44132 silly gunzTarPerm extractEntry package.json
44133 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44134 verbose rebuildBundles [ '.bin', 'jsonlint' ]
44135 info install cjson@0.3.0
44136 silly gunzTarPerm extractEntry README.md
44137 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
44138 silly gunzTarPerm extractEntry LICENSE
44139 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
44140 info postinstall cjson@0.3.0
44141 silly gunzTarPerm extractEntry index.js
44142 silly gunzTarPerm modified mode [ 'index.js', 438, 436 ]
44143 silly gunzTarPerm extractEntry dist/rx.aggregates.js
44144 silly gunzTarPerm modified mode [ 'dist/rx.aggregates.js', 438, 436 ]
44145 silly gunzTarPerm extractEntry index.js
44146 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44147 silly gunzTarPerm extractEntry license
44148 silly gunzTarPerm modified mode [ 'license', 420, 436 ]
44149 silly gunzTarPerm extractEntry index.js
44150 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44151 silly gunzTarPerm extractEntry readme.md
44152 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
44153 silly gunzTarPerm extractEntry README.md
44154 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
44155 silly gunzTarPerm extractEntry index.js
44156 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44157 silly gunzTarPerm extractEntry .npmignore
44158 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
44159 silly gunzTarPerm extractEntry README.md
44160 silly gunzTarPerm extractEntry .npmignore
44161 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
44162 silly gunzTarPerm extractEntry README.md
44163 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
44164 silly gunzTarPerm extractEntry index.js
44165 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44166 silly gunzTarPerm extractEntry .travis.yml
44167 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
44168 verbose unlock done using /home/lukas/.npm/_locks/cjson-d2e6d132d35c0071.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict/node_modules/cjson
44169 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict
44170 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict
44171 silly gunzTarPerm extractEntry chain.js
44172 silly gunzTarPerm modified mode [ 'chain.js', 420, 436 ]
44173 silly gunzTarPerm extractEntry string.js
44174 silly gunzTarPerm modified mode [ 'string.js', 420, 436 ]
44175 silly gunzTarPerm extractEntry chain.js
44176 silly gunzTarPerm modified mode [ 'chain.js', 420, 436 ]
44177 silly gunzTarPerm extractEntry string.js
44178 silly gunzTarPerm modified mode [ 'string.js', 420, 436 ]
44179 silly gunzTarPerm extractEntry dist/rx.testing.js
44180 silly gunzTarPerm modified mode [ 'dist/rx.testing.js', 438, 436 ]
44181 silly gunzTarPerm extractEntry readme.md
44182 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
44183 silly gunzTarPerm extractEntry LICENSE
44184 silly gunzTarPerm extractEntry gruntfile.js
44185 silly gunzTarPerm extractEntry index.js
44186 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44187 silly gunzTarPerm extractEntry test/index.js
44188 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
44189 silly gunzTarPerm extractEntry LICENSE.APACHE2
44190 silly gunzTarPerm modified mode [ 'LICENSE.APACHE2', 420, 436 ]
44191 silly gunzTarPerm extractEntry LICENSE.MIT
44192 silly gunzTarPerm modified mode [ 'LICENSE.MIT', 420, 436 ]
44193 silly gunzTarPerm extractEntry collection.js
44194 silly gunzTarPerm modified mode [ 'collection.js', 420, 436 ]
44195 silly gunzTarPerm extractEntry dist/rx.backpressure.min.js
44196 silly gunzTarPerm modified mode [ 'dist/rx.backpressure.min.js', 438, 436 ]
44197 silly gunzTarPerm extractEntry dist/rx.binding.js
44198 silly gunzTarPerm modified mode [ 'dist/rx.binding.js', 438, 436 ]
44199 silly gunzTarPerm extractEntry dist/rx.sorting.min.js
44200 silly gunzTarPerm modified mode [ 'dist/rx.sorting.min.js', 438, 436 ]
44201 info linkStuff convict@0.4.2
44202 silly linkStuff convict@0.4.2 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules as its parent node_modules
44203 silly gunzTarPerm extractEntry collection.js
44204 silly gunzTarPerm modified mode [ 'collection.js', 420, 436 ]
44205 silly gunzTarPerm extractEntry dist/angular-sprintf.min.js
44206 silly gunzTarPerm extractEntry dist/sprintf.min.js
44207 silly gunzTarPerm extractEntry dist/rx.backpressure.js
44208 silly gunzTarPerm modified mode [ 'dist/rx.backpressure.js', 438, 436 ]
44209 silly gunzTarPerm extractEntry readme.markdown
44210 silly gunzTarPerm modified mode [ 'readme.markdown', 420, 436 ]
44211 silly gunzTarPerm extractEntry test/async.js
44212 silly gunzTarPerm modified mode [ 'test/async.js', 420, 436 ]
44213 silly gunzTarPerm extractEntry array.js
44214 silly gunzTarPerm modified mode [ 'array.js', 420, 436 ]
44215 silly gunzTarPerm extractEntry date.js
44216 silly gunzTarPerm modified mode [ 'date.js', 420, 436 ]
44217 silly gunzTarPerm extractEntry array.js
44218 silly gunzTarPerm modified mode [ 'array.js', 420, 436 ]
44219 silly gunzTarPerm extractEntry date.js
44220 silly gunzTarPerm modified mode [ 'date.js', 420, 436 ]
44221 silly gunzTarPerm extractEntry dist/angular-sprintf.min.js.map
44222 silly gunzTarPerm extractEntry test/auto-destroy.js
44223 silly gunzTarPerm modified mode [ 'test/auto-destroy.js', 420, 436 ]
44224 silly gunzTarPerm extractEntry test/buffering.js
44225 silly gunzTarPerm modified mode [ 'test/buffering.js', 420, 436 ]
44226 silly gunzTarPerm extractEntry dist/rx.coincidence.js
44227 silly gunzTarPerm modified mode [ 'dist/rx.coincidence.js', 438, 436 ]
44228 silly gunzTarPerm extractEntry dist/rx.sorting.js
44229 silly gunzTarPerm modified mode [ 'dist/rx.sorting.js', 438, 436 ]
44230 silly gunzTarPerm extractEntry dist/rx.coincidence.min.js
44231 silly gunzTarPerm modified mode [ 'dist/rx.coincidence.min.js', 438, 436 ]
44232 verbose linkBins convict@0.4.2
44233 verbose linkMans convict@0.4.2
44234 verbose rebuildBundles convict@0.4.2
44235 verbose rebuildBundles [ 'cjson', 'moment', 'optimist', 'validator' ]
44236 info install convict@0.4.2
44237 silly gunzTarPerm extractEntry dist/rx.compat.js
44238 silly gunzTarPerm modified mode [ 'dist/rx.compat.js', 438, 436 ]
44239 info postinstall convict@0.4.2
44240 silly gunzTarPerm extractEntry number.js
44241 silly gunzTarPerm modified mode [ 'number.js', 420, 436 ]
44242 silly gunzTarPerm extractEntry function.js
44243 silly gunzTarPerm modified mode [ 'function.js', 420, 436 ]
44244 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures/package.json
44245 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/package.json
44246 silly gunzTarPerm extractEntry number.js
44247 silly gunzTarPerm modified mode [ 'number.js', 420, 436 ]
44248 silly gunzTarPerm extractEntry function.js
44249 silly gunzTarPerm modified mode [ 'function.js', 420, 436 ]
44250 silly gunzTarPerm extractEntry dist/angular-sprintf.min.map
44251 silly gunzTarPerm extractEntry dist/sprintf.min.js.map
44252 silly gunzTarPerm extractEntry test/end.js
44253 silly gunzTarPerm modified mode [ 'test/end.js', 420, 436 ]
44254 info preinstall figures@1.3.5
44255 info preinstall readline2@0.1.1
44256 silly gunzTarPerm extractEntry dist/rx.min.js
44257 silly gunzTarPerm modified mode [ 'dist/rx.min.js', 438, 436 ]
44258 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures/package.json
44259 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/package.json
44260 verbose unlock done using /home/lukas/.npm/_locks/convict-cb6218959dae61ec.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/convict
44261 silly gunzTarPerm extractEntry index.js
44262 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44263 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex/package.json
44264 silly gunzTarPerm extractEntry math.js
44265 silly gunzTarPerm modified mode [ 'math.js', 420, 436 ]
44266 silly gunzTarPerm extractEntry dist/sprintf.min.map
44267 silly gunzTarPerm extractEntry bower.json
44268 silly gunzTarPerm extractEntry index.js
44269 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44270 silly gunzTarPerm extractEntry math.js
44271 silly gunzTarPerm modified mode [ 'math.js', 420, 436 ]
44272 silly gunzTarPerm extractEntry test/index.js
44273 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
44274 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2',
44274 verbose readDependencies: using existing wrap { 'mute-stream':
44274 verbose readDependencies: using existing wrap { version: '0.0.4',
44274 verbose readDependencies: using existing wrap from: 'mute-stream@0.0.4',
44274 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz' },
44274 verbose readDependencies: using existing wrap 'strip-ansi':
44274 verbose readDependencies: using existing wrap { version: '2.0.1',
44274 verbose readDependencies: using existing wrap from: 'strip-ansi@>=2.0.1 <3.0.0',
44274 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' } } ]
44275 verbose from wrap [ 'mute-stream',
44275 verbose from wrap { version: '0.0.4',
44275 verbose from wrap from: 'mute-stream@0.0.4',
44275 verbose from wrap resolved: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz' } ]
44276 verbose from wrap [ 'strip-ansi',
44276 verbose from wrap { version: '2.0.1',
44276 verbose from wrap from: 'strip-ansi@>=2.0.1 <3.0.0',
44276 verbose from wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' } ]
44277 verbose readDependencies returned deps { 'mute-stream': 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44277 verbose readDependencies returned deps 'strip-ansi': 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' }
44278 silly prepareForInstallMany adding mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz from readline2 dependencies
44279 silly prepareForInstallMany adding strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz from readline2 dependencies
44280 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/package.json
44281 info preinstall ansi-regex@1.1.1
44282 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures/package.json
44283 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex/package.json
44284 silly gunzTarPerm extractEntry dist/rx.async.min.js
44285 silly gunzTarPerm modified mode [ 'dist/rx.async.min.js', 438, 436 ]
44286 silly gunzTarPerm extractEntry dist/rx.compat.min.js
44287 silly gunzTarPerm modified mode [ 'dist/rx.compat.min.js', 438, 436 ]
44288 verbose readDependencies: using existing wrap [ '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2',
44288 verbose readDependencies: using existing wrap { 'mute-stream':
44288 verbose readDependencies: using existing wrap { version: '0.0.4',
44288 verbose readDependencies: using existing wrap from: 'mute-stream@0.0.4',
44288 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz' },
44288 verbose readDependencies: using existing wrap 'strip-ansi':
44288 verbose readDependencies: using existing wrap { version: '2.0.1',
44288 verbose readDependencies: using existing wrap from: 'strip-ansi@>=2.0.1 <3.0.0',
44288 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' } } ]
44289 verbose from wrap [ 'mute-stream',
44289 verbose from wrap { version: '0.0.4',
44289 verbose from wrap from: 'mute-stream@0.0.4',
44289 verbose from wrap resolved: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz' } ]
44290 verbose from wrap [ 'strip-ansi',
44290 verbose from wrap { version: '2.0.1',
44290 verbose from wrap from: 'strip-ansi@>=2.0.1 <3.0.0',
44290 verbose from wrap resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' } ]
44291 verbose readDependencies returned deps { 'mute-stream': 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44291 verbose readDependencies returned deps 'strip-ansi': 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' }
44292 silly gunzTarPerm extractEntry support.js
44293 silly gunzTarPerm modified mode [ 'support.js', 420, 436 ]
44294 silly gunzTarPerm extractEntry lang.js
44295 silly gunzTarPerm modified mode [ 'lang.js', 420, 436 ]
44296 silly gunzTarPerm extractEntry dist/rx.testing.min.js
44297 silly gunzTarPerm modified mode [ 'dist/rx.testing.min.js', 438, 436 ]
44298 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width/package.json
44299 silly cache add args [ 'mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44299 silly cache add null ]
44300 verbose cache add spec mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
44301 silly cache add args [ 'strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
44301 silly cache add null ]
44302 verbose cache add spec strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44303 silly install resolved []
44304 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44305 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44306 silly cache add parsed spec Result {
44306 silly cache add raw: 'mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44306 silly cache add scope: null,
44306 silly cache add name: 'mute-stream',
44306 silly cache add rawSpec: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44306 silly cache add spec: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44306 silly cache add type: 'remote' }
44307 silly mapToRegistry name mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
44308 silly mapToRegistry using default registry
44309 silly mapToRegistry registry https://registry.npmjs.org/
44310 silly mapToRegistry uri https://registry.npmjs.org/mute-stream@https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
44311 verbose addRemoteTarball https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz not in flight; adding
44312 verbose addRemoteTarball [ 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
44312 verbose addRemoteTarball null ]
44313 silly cache add parsed spec Result {
44313 silly cache add raw: 'strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
44313 silly cache add scope: null,
44313 silly cache add name: 'strip-ansi',
44313 silly cache add rawSpec: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
44313 silly cache add spec: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
44313 silly cache add type: 'remote' }
44314 silly mapToRegistry name strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44315 silly mapToRegistry using default registry
44316 silly mapToRegistry registry https://registry.npmjs.org/
44317 silly mapToRegistry uri https://registry.npmjs.org/strip-ansi@https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44318 verbose addRemoteTarball https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz not in flight; adding
44319 verbose addRemoteTarball [ 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
44319 verbose addRemoteTarball null ]
44320 silly gunzTarPerm extractEntry support.js
44321 silly gunzTarPerm modified mode [ 'support.js', 420, 436 ]
44322 silly gunzTarPerm extractEntry lang.js
44323 silly gunzTarPerm modified mode [ 'lang.js', 420, 436 ]
44324 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex/package.json
44325 silly gunzTarPerm extractEntry src/angular-sprintf.js
44326 silly gunzTarPerm extractEntry src/sprintf.js
44327 info retry fetch attempt 1 at 9:02:54 PM
44328 info attempt registry request try #1 at 9:02:54 PM
44329 http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44330 info preinstall cli-width@1.0.1
44331 info retry fetch attempt 1 at 9:02:54 PM
44332 info attempt registry request try #1 at 9:02:54 PM
44333 http fetch GET https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
44334 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width/package.json
44335 info linkStuff figures@1.3.5
44336 silly linkStuff figures@1.3.5 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules as its parent node_modules
44337 silly gunzTarPerm extractEntry dist/rx.experimental.js
44338 silly gunzTarPerm modified mode [ 'dist/rx.experimental.js', 438, 436 ]
44339 silly gunzTarPerm extractEntry object.js
44340 silly gunzTarPerm modified mode [ 'object.js', 420, 436 ]
44341 silly gunzTarPerm extractEntry utility.js
44342 silly gunzTarPerm modified mode [ 'utility.js', 420, 436 ]
44343 silly install resolved []
44344 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44345 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44346 silly gunzTarPerm extractEntry object.js
44347 silly gunzTarPerm modified mode [ 'object.js', 420, 436 ]
44348 silly gunzTarPerm extractEntry utility.js
44349 silly gunzTarPerm modified mode [ 'utility.js', 420, 436 ]
44350 silly gunzTarPerm extractEntry demo/angular.html
44351 silly gunzTarPerm extractEntry test/test.js
44352 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width/package.json
44353 info linkStuff ansi-regex@1.1.1
44354 silly linkStuff ansi-regex@1.1.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules as its parent node_modules
44355 silly gunzTarPerm extractEntry collection/all.js
44356 silly gunzTarPerm modified mode [ 'collection/all.js', 420, 436 ]
44357 silly gunzTarPerm extractEntry collection/forEachRight.js
44358 silly gunzTarPerm modified mode [ 'collection/forEachRight.js', 420, 436 ]
44359 silly gunzTarPerm extractEntry dist/rx.async.js
44360 silly gunzTarPerm modified mode [ 'dist/rx.async.js', 438, 436 ]
44361 silly gunzTarPerm extractEntry dist/rx.lite.min.js
44362 silly gunzTarPerm modified mode [ 'dist/rx.lite.min.js', 438, 436 ]
44363 silly gunzTarPerm extractEntry dist/rx.async.compat.min.js
44364 silly gunzTarPerm modified mode [ 'dist/rx.async.compat.min.js', 438, 436 ]
44365 silly install resolved []
44366 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44367 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44368 silly gunzTarPerm extractEntry collection/all.js
44369 silly gunzTarPerm modified mode [ 'collection/all.js', 420, 436 ]
44370 silly gunzTarPerm extractEntry collection/forEachRight.js
44371 silly gunzTarPerm modified mode [ 'collection/forEachRight.js', 420, 436 ]
44372 verbose linkBins figures@1.3.5
44373 verbose linkMans figures@1.3.5
44374 verbose rebuildBundles figures@1.3.5
44375 silly gunzTarPerm extractEntry dist/rx.experimental.min.js
44376 silly gunzTarPerm modified mode [ 'dist/rx.experimental.min.js', 438, 436 ]
44377 info install figures@1.3.5
44378 info postinstall figures@1.3.5
44379 info linkStuff cli-width@1.0.1
44380 silly linkStuff cli-width@1.0.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules as its parent node_modules
44381 silly gunzTarPerm extractEntry collection/groupBy.js
44382 silly gunzTarPerm modified mode [ 'collection/groupBy.js', 420, 436 ]
44383 silly gunzTarPerm extractEntry collection/include.js
44384 silly gunzTarPerm modified mode [ 'collection/include.js', 420, 436 ]
44385 verbose unlock done using /home/lukas/.npm/_locks/figures-d6237e1a014528ac.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/figures
44386 silly gunzTarPerm extractEntry collection/groupBy.js
44387 silly gunzTarPerm modified mode [ 'collection/groupBy.js', 420, 436 ]
44388 silly gunzTarPerm extractEntry collection/include.js
44389 silly gunzTarPerm modified mode [ 'collection/include.js', 420, 436 ]
44390 verbose linkBins ansi-regex@1.1.1
44391 verbose linkMans ansi-regex@1.1.1
44392 verbose rebuildBundles ansi-regex@1.1.1
44393 silly gunzTarPerm extractEntry dist/rx.time.js
44394 silly gunzTarPerm modified mode [ 'dist/rx.time.js', 438, 436 ]
44395 silly gunzTarPerm extractEntry dist/rx.lite.js
44396 silly gunzTarPerm modified mode [ 'dist/rx.lite.js', 438, 436 ]
44397 info install ansi-regex@1.1.1
44398 silly gunzTarPerm extractEntry dist/rx.async.compat.js
44399 silly gunzTarPerm modified mode [ 'dist/rx.async.compat.js', 438, 436 ]
44400 info postinstall ansi-regex@1.1.1
44401 verbose unlock done using /home/lukas/.npm/_locks/ansi-regex-4f3feb81e8ff1eac.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/ansi-regex
44402 silly gunzTarPerm extractEntry collection/includes.js
44403 silly gunzTarPerm modified mode [ 'collection/includes.js', 420, 436 ]
44404 silly gunzTarPerm extractEntry collection/forEach.js
44405 silly gunzTarPerm modified mode [ 'collection/forEach.js', 420, 436 ]
44406 silly gunzTarPerm extractEntry collection/inject.js
44407 silly gunzTarPerm modified mode [ 'collection/inject.js', 420, 436 ]
44408 silly gunzTarPerm extractEntry collection/invoke.js
44409 silly gunzTarPerm modified mode [ 'collection/invoke.js', 420, 436 ]
44410 silly gunzTarPerm extractEntry collection/includes.js
44411 silly gunzTarPerm modified mode [ 'collection/includes.js', 420, 436 ]
44412 silly gunzTarPerm extractEntry collection/forEach.js
44413 silly gunzTarPerm modified mode [ 'collection/forEach.js', 420, 436 ]
44414 silly gunzTarPerm extractEntry collection/inject.js
44415 silly gunzTarPerm modified mode [ 'collection/inject.js', 420, 436 ]
44416 verbose linkBins cli-width@1.0.1
44417 verbose linkMans cli-width@1.0.1
44418 verbose rebuildBundles cli-width@1.0.1
44419 http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44420 info install cli-width@1.0.1
44421 silly gunzTarPerm extractEntry collection/map.js
44422 silly gunzTarPerm modified mode [ 'collection/map.js', 420, 436 ]
44423 silly gunzTarPerm extractEntry collection/invoke.js
44424 silly gunzTarPerm modified mode [ 'collection/invoke.js', 420, 436 ]
44425 silly gunzTarPerm extractEntry dist/rx.lite.extras.min.js
44426 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.min.js', 438, 436 ]
44427 silly gunzTarPerm extractEntry dist/rx.all.min.js
44428 silly gunzTarPerm modified mode [ 'dist/rx.all.min.js', 438, 436 ]
44429 info postinstall cli-width@1.0.1
44430 silly gunzTarPerm extractEntry collection/max.js
44431 silly gunzTarPerm modified mode [ 'collection/max.js', 420, 436 ]
44432 silly gunzTarPerm extractEntry collection/map.js
44433 silly gunzTarPerm modified mode [ 'collection/map.js', 420, 436 ]
44434 silly gunzTarPerm extractEntry collection/min.js
44435 silly gunzTarPerm modified mode [ 'collection/min.js', 420, 436 ]
44436 silly gunzTarPerm extractEntry collection/max.js
44437 silly gunzTarPerm modified mode [ 'collection/max.js', 420, 436 ]
44438 verbose unlock done using /home/lukas/.npm/_locks/cli-width-cc4aff427026c2d8.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/cli-width
44439 silly fetchAndShaCheck shasum df62c1aa94ed2f114e1d0f21fd1d50482b79a60e
44440 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz not in flight; adding
44441 silly gunzTarPerm extractEntry collection/foldr.js
44442 silly gunzTarPerm modified mode [ 'collection/foldr.js', 420, 436 ]
44443 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44444 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz
44445 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-57984aeca0ba
44446 silly gentlyRm /tmp/npm-30115-af71656d/unpack-57984aeca0ba is being purged
44447 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-57984aeca0ba
44448 silly gunzTarPerm extractEntry collection/min.js
44449 silly gunzTarPerm modified mode [ 'collection/min.js', 420, 436 ]
44450 silly gunzTarPerm modes [ '775', '664' ]
44451 silly gunzTarPerm extractEntry collection/partition.js
44452 silly gunzTarPerm modified mode [ 'collection/partition.js', 420, 436 ]
44453 silly gunzTarPerm extractEntry collection/foldr.js
44454 silly gunzTarPerm modified mode [ 'collection/foldr.js', 420, 436 ]
44455 silly gunzTarPerm extractEntry collection/foldl.js
44456 silly gunzTarPerm modified mode [ 'collection/foldl.js', 420, 436 ]
44457 silly gunzTarPerm extractEntry collection/partition.js
44458 silly gunzTarPerm modified mode [ 'collection/partition.js', 420, 436 ]
44459 silly gunzTarPerm extractEntry collection/pluck.js
44460 silly gunzTarPerm modified mode [ 'collection/pluck.js', 420, 436 ]
44461 silly gunzTarPerm extractEntry collection/foldl.js
44462 silly gunzTarPerm modified mode [ 'collection/foldl.js', 420, 436 ]
44463 silly gunzTarPerm extractEntry dist/rx.joinpatterns.min.js
44464 silly gunzTarPerm modified mode [ 'dist/rx.joinpatterns.min.js', 438, 436 ]
44465 silly gunzTarPerm extractEntry package.json
44466 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
44467 silly gunzTarPerm extractEntry collection/findWhere.js
44468 silly gunzTarPerm modified mode [ 'collection/findWhere.js', 420, 436 ]
44469 silly gunzTarPerm extractEntry collection/pluck.js
44470 silly gunzTarPerm modified mode [ 'collection/pluck.js', 420, 436 ]
44471 silly gunzTarPerm extractEntry collection/reduce.js
44472 silly gunzTarPerm modified mode [ 'collection/reduce.js', 420, 436 ]
44473 silly gunzTarPerm extractEntry collection/findWhere.js
44474 silly gunzTarPerm modified mode [ 'collection/findWhere.js', 420, 436 ]
44475 silly gunzTarPerm extractEntry index.js
44476 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
44477 silly gunzTarPerm extractEntry cli.js
44478 silly gunzTarPerm modified mode [ 'cli.js', 493, 509 ]
44479 silly gunzTarPerm extractEntry collection/findLast.js
44480 silly gunzTarPerm modified mode [ 'collection/findLast.js', 420, 436 ]
44481 silly gunzTarPerm extractEntry collection/reduce.js
44482 silly gunzTarPerm modified mode [ 'collection/reduce.js', 420, 436 ]
44483 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through/package.json
44484 silly gunzTarPerm extractEntry collection/reduceRight.js
44485 silly gunzTarPerm modified mode [ 'collection/reduceRight.js', 420, 436 ]
44486 silly gunzTarPerm extractEntry collection/findLast.js
44487 silly gunzTarPerm modified mode [ 'collection/findLast.js', 420, 436 ]
44488 silly gunzTarPerm extractEntry dist/rx.time.min.js
44489 silly gunzTarPerm modified mode [ 'dist/rx.time.min.js', 438, 436 ]
44490 silly gunzTarPerm extractEntry dist/rx.js
44491 silly gunzTarPerm modified mode [ 'dist/rx.js', 438, 436 ]
44492 silly gunzTarPerm extractEntry collection/find.js
44493 silly gunzTarPerm modified mode [ 'collection/find.js', 420, 436 ]
44494 silly gunzTarPerm extractEntry collection/reduceRight.js
44495 silly gunzTarPerm modified mode [ 'collection/reduceRight.js', 420, 436 ]
44496 info preinstall through@2.3.8
44497 silly gunzTarPerm extractEntry collection/reject.js
44498 silly gunzTarPerm modified mode [ 'collection/reject.js', 420, 436 ]
44499 silly gunzTarPerm extractEntry collection/find.js
44500 silly gunzTarPerm modified mode [ 'collection/find.js', 420, 436 ]
44501 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through/package.json
44502 silly gunzTarPerm extractEntry collection/filter.js
44503 silly gunzTarPerm modified mode [ 'collection/filter.js', 420, 436 ]
44504 silly gunzTarPerm extractEntry collection/reject.js
44505 silly gunzTarPerm modified mode [ 'collection/reject.js', 420, 436 ]
44506 silly gunzTarPerm extractEntry readme.md
44507 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
44508 silly gunzTarPerm extractEntry collection/sample.js
44509 silly gunzTarPerm modified mode [ 'collection/sample.js', 420, 436 ]
44510 silly gunzTarPerm extractEntry collection/filter.js
44511 silly gunzTarPerm modified mode [ 'collection/filter.js', 420, 436 ]
44512 silly gunzTarPerm extractEntry dist/rx.all.js
44513 silly gunzTarPerm modified mode [ 'dist/rx.all.js', 438, 436 ]
44514 silly gunzTarPerm extractEntry collection/every.js
44515 silly gunzTarPerm modified mode [ 'collection/every.js', 420, 436 ]
44516 silly gunzTarPerm extractEntry collection/sample.js
44517 silly gunzTarPerm modified mode [ 'collection/sample.js', 420, 436 ]
44518 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through/package.json
44519 silly gunzTarPerm extractEntry collection/select.js
44520 silly gunzTarPerm modified mode [ 'collection/select.js', 420, 436 ]
44521 silly gunzTarPerm extractEntry collection/every.js
44522 silly gunzTarPerm modified mode [ 'collection/every.js', 420, 436 ]
44523 silly gunzTarPerm extractEntry collection/eachRight.js
44524 silly gunzTarPerm modified mode [ 'collection/eachRight.js', 420, 436 ]
44525 silly gunzTarPerm extractEntry collection/select.js
44526 silly gunzTarPerm modified mode [ 'collection/select.js', 420, 436 ]
44527 silly gunzTarPerm extractEntry collection/shuffle.js
44528 silly gunzTarPerm modified mode [ 'collection/shuffle.js', 420, 436 ]
44529 silly gunzTarPerm extractEntry collection/eachRight.js
44530 silly gunzTarPerm modified mode [ 'collection/eachRight.js', 420, 436 ]
44531 silly install resolved []
44532 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44533 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44534 silly gunzTarPerm extractEntry collection/each.js
44535 silly gunzTarPerm modified mode [ 'collection/each.js', 420, 436 ]
44536 silly gunzTarPerm extractEntry collection/shuffle.js
44537 silly gunzTarPerm modified mode [ 'collection/shuffle.js', 420, 436 ]
44538 silly gunzTarPerm extractEntry collection/size.js
44539 silly gunzTarPerm modified mode [ 'collection/size.js', 420, 436 ]
44540 silly gunzTarPerm extractEntry collection/each.js
44541 silly gunzTarPerm modified mode [ 'collection/each.js', 420, 436 ]
44542 info linkStuff through@2.3.8
44543 silly linkStuff through@2.3.8 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules as its parent node_modules
44544 silly gunzTarPerm extractEntry collection/detect.js
44545 silly gunzTarPerm modified mode [ 'collection/detect.js', 420, 436 ]
44546 silly gunzTarPerm extractEntry collection/size.js
44547 silly gunzTarPerm modified mode [ 'collection/size.js', 420, 436 ]
44548 silly gunzTarPerm extractEntry collection/some.js
44549 silly gunzTarPerm modified mode [ 'collection/some.js', 420, 436 ]
44550 silly gunzTarPerm extractEntry collection/detect.js
44551 silly gunzTarPerm modified mode [ 'collection/detect.js', 420, 436 ]
44552 silly gunzTarPerm extractEntry collection/countBy.js
44553 silly gunzTarPerm modified mode [ 'collection/countBy.js', 420, 436 ]
44554 silly gunzTarPerm extractEntry collection/some.js
44555 silly gunzTarPerm modified mode [ 'collection/some.js', 420, 436 ]
44556 silly gunzTarPerm extractEntry collection/countBy.js
44557 silly gunzTarPerm modified mode [ 'collection/countBy.js', 420, 436 ]
44558 silly gunzTarPerm extractEntry dist/rx.lite.compat.js
44559 silly gunzTarPerm modified mode [ 'dist/rx.lite.compat.js', 438, 436 ]
44560 verbose linkBins through@2.3.8
44561 verbose linkMans through@2.3.8
44562 verbose rebuildBundles through@2.3.8
44563 silly gunzTarPerm extractEntry collection/sortBy.js
44564 silly gunzTarPerm modified mode [ 'collection/sortBy.js', 420, 436 ]
44565 silly gunzTarPerm extractEntry collection/contains.js
44566 silly gunzTarPerm modified mode [ 'collection/contains.js', 420, 436 ]
44567 info install through@2.3.8
44568 silly gunzTarPerm extractEntry collection/sortBy.js
44569 silly gunzTarPerm modified mode [ 'collection/sortBy.js', 420, 436 ]
44570 silly gunzTarPerm extractEntry collection/contains.js
44571 silly gunzTarPerm modified mode [ 'collection/contains.js', 420, 436 ]
44572 info postinstall through@2.3.8
44573 verbose unlock done using /home/lukas/.npm/_locks/through-ff9e8651fc467f3d.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/through
44574 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json
44575 silly gunzTarPerm extractEntry collection/sortByAll.js
44576 silly gunzTarPerm modified mode [ 'collection/sortByAll.js', 420, 436 ]
44577 silly gunzTarPerm extractEntry collection/collect.js
44578 silly gunzTarPerm modified mode [ 'collection/collect.js', 420, 436 ]
44579 silly gunzTarPerm extractEntry collection/sortByAll.js
44580 silly gunzTarPerm modified mode [ 'collection/sortByAll.js', 420, 436 ]
44581 silly gunzTarPerm extractEntry collection/collect.js
44582 silly gunzTarPerm modified mode [ 'collection/collect.js', 420, 436 ]
44583 info preinstall sprintf-js@1.0.3
44584 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json
44585 silly gunzTarPerm extractEntry dist/rx.all.compat.min.js
44586 silly gunzTarPerm modified mode [ 'dist/rx.all.compat.min.js', 438, 436 ]
44587 silly gunzTarPerm extractEntry collection/sortByOrder.js
44588 silly gunzTarPerm modified mode [ 'collection/sortByOrder.js', 420, 436 ]
44589 silly gunzTarPerm extractEntry collection/at.js
44590 silly gunzTarPerm modified mode [ 'collection/at.js', 420, 436 ]
44591 silly gunzTarPerm extractEntry collection/sortByOrder.js
44592 silly gunzTarPerm modified mode [ 'collection/sortByOrder.js', 420, 436 ]
44593 silly gunzTarPerm extractEntry collection/at.js
44594 silly gunzTarPerm modified mode [ 'collection/at.js', 420, 436 ]
44595 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js/package.json
44596 silly gunzTarPerm extractEntry dist/rx.lite.extras.js
44597 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.js', 438, 436 ]
44598 silly gunzTarPerm extractEntry dist/rx.virtualtime.js
44599 silly gunzTarPerm modified mode [ 'dist/rx.virtualtime.js', 438, 436 ]
44600 silly install resolved []
44601 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44602 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44603 silly gunzTarPerm extractEntry dist/rx.lite.compat.min.js
44604 silly gunzTarPerm modified mode [ 'dist/rx.lite.compat.min.js', 438, 436 ]
44605 silly gunzTarPerm extractEntry collection/sum.js
44606 silly gunzTarPerm modified mode [ 'collection/sum.js', 420, 436 ]
44607 silly gunzTarPerm extractEntry collection/any.js
44608 silly gunzTarPerm modified mode [ 'collection/any.js', 420, 436 ]
44609 silly gunzTarPerm extractEntry collection/sum.js
44610 silly gunzTarPerm modified mode [ 'collection/sum.js', 420, 436 ]
44611 silly gunzTarPerm extractEntry collection/any.js
44612 silly gunzTarPerm modified mode [ 'collection/any.js', 420, 436 ]
44613 info linkStuff sprintf-js@1.0.3
44614 silly linkStuff sprintf-js@1.0.3 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules as its parent node_modules
44615 silly gunzTarPerm extractEntry dist/rx.all.compat.js
44616 silly gunzTarPerm modified mode [ 'dist/rx.all.compat.js', 438, 436 ]
44617 silly gunzTarPerm extractEntry collection/where.js
44618 silly gunzTarPerm modified mode [ 'collection/where.js', 420, 436 ]
44619 silly gunzTarPerm extractEntry collection/indexBy.js
44620 silly gunzTarPerm modified mode [ 'collection/indexBy.js', 420, 436 ]
44621 silly cache afterAdd strip-ansi@2.0.1
44622 verbose afterAdd /home/lukas/.npm/strip-ansi/2.0.1/package/package.json not in flight; writing
44623 silly gunzTarPerm extractEntry collection/where.js
44624 silly gunzTarPerm modified mode [ 'collection/where.js', 420, 436 ]
44625 silly gunzTarPerm extractEntry collection/indexBy.js
44626 silly gunzTarPerm modified mode [ 'collection/indexBy.js', 420, 436 ]
44627 verbose afterAdd /home/lukas/.npm/strip-ansi/2.0.1/package/package.json written
44628 silly gunzTarPerm extractEntry math/add.js
44629 silly gunzTarPerm modified mode [ 'math/add.js', 420, 436 ]
44630 silly gunzTarPerm extractEntry math/ceil.js
44631 silly gunzTarPerm modified mode [ 'math/ceil.js', 420, 436 ]
44632 verbose linkBins sprintf-js@1.0.3
44633 verbose linkMans sprintf-js@1.0.3
44634 verbose rebuildBundles sprintf-js@1.0.3
44635 info install sprintf-js@1.0.3
44636 silly gunzTarPerm extractEntry math/add.js
44637 silly gunzTarPerm modified mode [ 'math/add.js', 420, 436 ]
44638 silly gunzTarPerm extractEntry math/ceil.js
44639 silly gunzTarPerm modified mode [ 'math/ceil.js', 420, 436 ]
44640 info postinstall sprintf-js@1.0.3
44641 verbose unlock done using /home/lukas/.npm/_locks/sprintf-js-e22a25d03abc9ab5.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/sprintf-js
44642 silly gunzTarPerm extractEntry math/floor.js
44643 silly gunzTarPerm modified mode [ 'math/floor.js', 420, 436 ]
44644 silly gunzTarPerm extractEntry math/max.js
44645 silly gunzTarPerm modified mode [ 'math/max.js', 420, 436 ]
44646 silly gunzTarPerm extractEntry math/floor.js
44647 silly gunzTarPerm modified mode [ 'math/floor.js', 420, 436 ]
44648 silly gunzTarPerm extractEntry math/max.js
44649 silly gunzTarPerm modified mode [ 'math/max.js', 420, 436 ]
44650 silly gunzTarPerm extractEntry dist/rx.lite.extras.compat.js
44651 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.compat.js', 438, 436 ]
44652 silly gunzTarPerm extractEntry dist/rx.aggregates.min.js
44653 silly gunzTarPerm modified mode [ 'dist/rx.aggregates.min.js', 438, 436 ]
44654 silly gunzTarPerm extractEntry dist/rx.lite.extras.compat.min.js
44655 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.compat.min.js', 438, 436 ]
44656 silly gunzTarPerm extractEntry math/min.js
44657 silly gunzTarPerm modified mode [ 'math/min.js', 420, 436 ]
44658 silly gunzTarPerm extractEntry math/round.js
44659 silly gunzTarPerm modified mode [ 'math/round.js', 420, 436 ]
44660 silly gunzTarPerm extractEntry math/min.js
44661 silly gunzTarPerm modified mode [ 'math/min.js', 420, 436 ]
44662 silly gunzTarPerm extractEntry math/round.js
44663 silly gunzTarPerm modified mode [ 'math/round.js', 420, 436 ]
44664 silly gunzTarPerm extractEntry dist/rx.binding.min.js
44665 silly gunzTarPerm modified mode [ 'dist/rx.binding.min.js', 438, 436 ]
44666 silly gunzTarPerm extractEntry dist/rx.virtualtime.min.js
44667 silly gunzTarPerm modified mode [ 'dist/rx.virtualtime.min.js', 438, 436 ]
44668 silly gunzTarPerm extractEntry dist/rx.joinpatterns.js
44669 silly gunzTarPerm modified mode [ 'dist/rx.joinpatterns.js', 438, 436 ]
44670 silly gunzTarPerm extractEntry math/sum.js
44671 silly gunzTarPerm modified mode [ 'math/sum.js', 420, 436 ]
44672 silly gunzTarPerm extractEntry number/inRange.js
44673 silly gunzTarPerm modified mode [ 'number/inRange.js', 420, 436 ]
44674 silly gunzTarPerm extractEntry dist/rx.lite.extras.compat.map
44675 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.compat.map', 438, 436 ]
44676 silly gunzTarPerm extractEntry dist/rx.lite.extras.map
44677 silly gunzTarPerm modified mode [ 'dist/rx.lite.extras.map', 438, 436 ]
44678 silly gunzTarPerm extractEntry math/sum.js
44679 silly gunzTarPerm modified mode [ 'math/sum.js', 420, 436 ]
44680 silly gunzTarPerm extractEntry number/inRange.js
44681 silly gunzTarPerm modified mode [ 'number/inRange.js', 420, 436 ]
44682 silly gunzTarPerm extractEntry dist/rx.joinpatterns.map
44683 silly gunzTarPerm modified mode [ 'dist/rx.joinpatterns.map', 438, 436 ]
44684 silly gunzTarPerm extractEntry dist/rx.aggregates.map
44685 silly gunzTarPerm modified mode [ 'dist/rx.aggregates.map', 438, 436 ]
44686 silly gunzTarPerm extractEntry number/random.js
44687 silly gunzTarPerm modified mode [ 'number/random.js', 420, 436 ]
44688 silly gunzTarPerm extractEntry function/after.js
44689 silly gunzTarPerm modified mode [ 'function/after.js', 420, 436 ]
44690 silly gunzTarPerm extractEntry number/random.js
44691 silly gunzTarPerm modified mode [ 'number/random.js', 420, 436 ]
44692 silly gunzTarPerm extractEntry function/after.js
44693 silly gunzTarPerm modified mode [ 'function/after.js', 420, 436 ]
44694 silly gunzTarPerm extractEntry dist/rx.lite.map
44695 silly gunzTarPerm modified mode [ 'dist/rx.lite.map', 438, 436 ]
44696 silly gunzTarPerm extractEntry dist/rx.experimental.map
44697 silly gunzTarPerm modified mode [ 'dist/rx.experimental.map', 438, 436 ]
44698 silly gunzTarPerm extractEntry function/curryRight.js
44699 silly gunzTarPerm modified mode [ 'function/curryRight.js', 420, 436 ]
44700 silly gunzTarPerm extractEntry function/debounce.js
44701 silly gunzTarPerm modified mode [ 'function/debounce.js', 420, 436 ]
44702 silly gunzTarPerm extractEntry function/curryRight.js
44703 silly gunzTarPerm modified mode [ 'function/curryRight.js', 420, 436 ]
44704 silly gunzTarPerm extractEntry function/debounce.js
44705 silly gunzTarPerm modified mode [ 'function/debounce.js', 420, 436 ]
44706 silly gunzTarPerm extractEntry dist/rx.map
44707 silly gunzTarPerm modified mode [ 'dist/rx.map', 438, 436 ]
44708 silly gunzTarPerm extractEntry dist/rx.compat.map
44709 silly gunzTarPerm modified mode [ 'dist/rx.compat.map', 438, 436 ]
44710 silly gunzTarPerm extractEntry function/defer.js
44711 silly gunzTarPerm modified mode [ 'function/defer.js', 420, 436 ]
44712 silly gunzTarPerm extractEntry function/delay.js
44713 silly gunzTarPerm modified mode [ 'function/delay.js', 420, 436 ]
44714 silly gunzTarPerm extractEntry function/defer.js
44715 silly gunzTarPerm modified mode [ 'function/defer.js', 420, 436 ]
44716 silly gunzTarPerm extractEntry function/delay.js
44717 silly gunzTarPerm modified mode [ 'function/delay.js', 420, 436 ]
44718 silly gunzTarPerm extractEntry dist/rx.coincidence.map
44719 silly gunzTarPerm modified mode [ 'dist/rx.coincidence.map', 438, 436 ]
44720 silly gunzTarPerm extractEntry dist/rx.lite.compat.map
44721 silly gunzTarPerm modified mode [ 'dist/rx.lite.compat.map', 438, 436 ]
44722 silly gunzTarPerm extractEntry function/curry.js
44723 silly gunzTarPerm modified mode [ 'function/curry.js', 420, 436 ]
44724 silly gunzTarPerm extractEntry function/flowRight.js
44725 silly gunzTarPerm modified mode [ 'function/flowRight.js', 420, 436 ]
44726 silly gunzTarPerm extractEntry dist/rx.binding.map
44727 silly gunzTarPerm modified mode [ 'dist/rx.binding.map', 438, 436 ]
44728 silly gunzTarPerm extractEntry function/curry.js
44729 silly gunzTarPerm modified mode [ 'function/curry.js', 420, 436 ]
44730 silly gunzTarPerm extractEntry function/flowRight.js
44731 silly gunzTarPerm modified mode [ 'function/flowRight.js', 420, 436 ]
44732 silly gunzTarPerm extractEntry function/memoize.js
44733 silly gunzTarPerm modified mode [ 'function/memoize.js', 420, 436 ]
44734 silly gunzTarPerm extractEntry function/modArgs.js
44735 silly gunzTarPerm modified mode [ 'function/modArgs.js', 420, 436 ]
44736 silly gunzTarPerm extractEntry dist/rx.backpressure.map
44737 silly gunzTarPerm modified mode [ 'dist/rx.backpressure.map', 438, 436 ]
44738 silly gunzTarPerm extractEntry dist/rx.testing.map
44739 silly gunzTarPerm modified mode [ 'dist/rx.testing.map', 438, 436 ]
44740 silly gunzTarPerm extractEntry dist/rx.async.map
44741 silly gunzTarPerm modified mode [ 'dist/rx.async.map', 438, 436 ]
44742 silly gunzTarPerm extractEntry function/memoize.js
44743 silly gunzTarPerm modified mode [ 'function/memoize.js', 420, 436 ]
44744 silly gunzTarPerm extractEntry function/modArgs.js
44745 silly gunzTarPerm modified mode [ 'function/modArgs.js', 420, 436 ]
44746 silly gunzTarPerm extractEntry dist/rx.async.compat.map
44747 silly gunzTarPerm modified mode [ 'dist/rx.async.compat.map', 438, 436 ]
44748 silly gunzTarPerm extractEntry function/negate.js
44749 silly gunzTarPerm modified mode [ 'function/negate.js', 420, 436 ]
44750 silly gunzTarPerm extractEntry function/once.js
44751 silly gunzTarPerm modified mode [ 'function/once.js', 420, 436 ]
44752 silly gunzTarPerm extractEntry dist/rx.time.map
44753 silly gunzTarPerm modified mode [ 'dist/rx.time.map', 438, 436 ]
44754 silly gunzTarPerm extractEntry dist/rx.all.map
44755 silly gunzTarPerm modified mode [ 'dist/rx.all.map', 438, 436 ]
44756 silly gunzTarPerm extractEntry function/negate.js
44757 silly gunzTarPerm modified mode [ 'function/negate.js', 420, 436 ]
44758 silly gunzTarPerm extractEntry function/once.js
44759 silly gunzTarPerm modified mode [ 'function/once.js', 420, 436 ]
44760 silly gunzTarPerm extractEntry function/compose.js
44761 silly gunzTarPerm modified mode [ 'function/compose.js', 420, 436 ]
44762 silly gunzTarPerm extractEntry function/partial.js
44763 silly gunzTarPerm modified mode [ 'function/partial.js', 420, 436 ]
44764 silly gunzTarPerm extractEntry dist/rx.all.compat.map
44765 silly gunzTarPerm modified mode [ 'dist/rx.all.compat.map', 438, 436 ]
44766 silly gunzTarPerm extractEntry function/compose.js
44767 silly gunzTarPerm modified mode [ 'function/compose.js', 420, 436 ]
44768 silly gunzTarPerm extractEntry function/partial.js
44769 silly gunzTarPerm modified mode [ 'function/partial.js', 420, 436 ]
44770 silly gunzTarPerm extractEntry function/bindKey.js
44771 silly gunzTarPerm modified mode [ 'function/bindKey.js', 420, 436 ]
44772 silly gunzTarPerm extractEntry function/partialRight.js
44773 silly gunzTarPerm modified mode [ 'function/partialRight.js', 420, 436 ]
44774 silly gunzTarPerm extractEntry dist/rx.virtualtime.map
44775 silly gunzTarPerm modified mode [ 'dist/rx.virtualtime.map', 438, 436 ]
44776 silly gunzTarPerm extractEntry function/bindKey.js
44777 silly gunzTarPerm modified mode [ 'function/bindKey.js', 420, 436 ]
44778 silly gunzTarPerm extractEntry function/partialRight.js
44779 silly gunzTarPerm modified mode [ 'function/partialRight.js', 420, 436 ]
44780 silly gunzTarPerm extractEntry function/bindAll.js
44781 silly gunzTarPerm modified mode [ 'function/bindAll.js', 420, 436 ]
44782 silly gunzTarPerm extractEntry function/rearg.js
44783 silly gunzTarPerm modified mode [ 'function/rearg.js', 420, 436 ]
44784 silly gunzTarPerm extractEntry dist/rx.sorting.map
44785 silly gunzTarPerm modified mode [ 'dist/rx.sorting.map', 438, 436 ]
44786 silly gunzTarPerm extractEntry .jscsrc.todo
44787 silly gunzTarPerm modified mode [ '.jscsrc.todo', 438, 436 ]
44788 silly gunzTarPerm extractEntry .coveralls.yml
44789 silly gunzTarPerm modified mode [ '.coveralls.yml', 438, 436 ]
44790 silly gunzTarPerm extractEntry function/bindAll.js
44791 silly gunzTarPerm modified mode [ 'function/bindAll.js', 420, 436 ]
44792 silly gunzTarPerm extractEntry function/rearg.js
44793 silly gunzTarPerm modified mode [ 'function/rearg.js', 420, 436 ]
44794 silly gunzTarPerm extractEntry authors.txt
44795 silly gunzTarPerm modified mode [ 'authors.txt', 438, 436 ]
44796 silly gunzTarPerm extractEntry function/bind.js
44797 silly gunzTarPerm modified mode [ 'function/bind.js', 420, 436 ]
44798 silly gunzTarPerm extractEntry function/restParam.js
44799 silly gunzTarPerm modified mode [ 'function/restParam.js', 420, 436 ]
44800 silly gunzTarPerm extractEntry function/bind.js
44801 silly gunzTarPerm modified mode [ 'function/bind.js', 420, 436 ]
44802 silly gunzTarPerm extractEntry function/restParam.js
44803 silly gunzTarPerm modified mode [ 'function/restParam.js', 420, 436 ]
44804 silly gunzTarPerm extractEntry function/before.js
44805 silly gunzTarPerm modified mode [ 'function/before.js', 420, 436 ]
44806 silly gunzTarPerm extractEntry function/spread.js
44807 silly gunzTarPerm modified mode [ 'function/spread.js', 420, 436 ]
44808 silly gunzTarPerm extractEntry bower.json
44809 silly gunzTarPerm modified mode [ 'bower.json', 438, 436 ]
44810 silly gunzTarPerm extractEntry component.json
44811 silly gunzTarPerm modified mode [ 'component.json', 438, 436 ]
44812 silly gunzTarPerm extractEntry function/before.js
44813 silly gunzTarPerm modified mode [ 'function/before.js', 420, 436 ]
44814 silly gunzTarPerm extractEntry function/spread.js
44815 silly gunzTarPerm modified mode [ 'function/spread.js', 420, 436 ]
44816 silly gunzTarPerm extractEntry function/backflow.js
44817 silly gunzTarPerm modified mode [ 'function/backflow.js', 420, 436 ]
44818 silly gunzTarPerm extractEntry function/throttle.js
44819 silly gunzTarPerm modified mode [ 'function/throttle.js', 420, 436 ]
44820 silly gunzTarPerm extractEntry .jamignore
44821 silly gunzTarPerm modified mode [ '.jamignore', 438, 436 ]
44822 silly gunzTarPerm extractEntry license.txt
44823 silly gunzTarPerm modified mode [ 'license.txt', 438, 436 ]
44824 silly gunzTarPerm extractEntry logos/logo.png
44825 silly gunzTarPerm modified mode [ 'logos/logo.png', 438, 436 ]
44826 silly gunzTarPerm extractEntry .jscsrc
44827 silly gunzTarPerm modified mode [ '.jscsrc', 438, 436 ]
44828 silly gunzTarPerm extractEntry function/backflow.js
44829 silly gunzTarPerm modified mode [ 'function/backflow.js', 420, 436 ]
44830 silly gunzTarPerm extractEntry function/throttle.js
44831 silly gunzTarPerm modified mode [ 'function/throttle.js', 420, 436 ]
44832 silly gunzTarPerm extractEntry readme.md
44833 silly gunzTarPerm modified mode [ 'readme.md', 438, 436 ]
44834 silly gunzTarPerm extractEntry function/ary.js
44835 silly gunzTarPerm modified mode [ 'function/ary.js', 420, 436 ]
44836 silly gunzTarPerm extractEntry function/wrap.js
44837 silly gunzTarPerm modified mode [ 'function/wrap.js', 420, 436 ]
44838 silly gunzTarPerm extractEntry src/core/abstractobserver.js
44839 silly gunzTarPerm modified mode [ 'src/core/abstractobserver.js', 438, 436 ]
44840 silly gunzTarPerm extractEntry src/core/checkedobserver.js
44841 silly gunzTarPerm modified mode [ 'src/core/checkedobserver.js', 438, 436 ]
44842 silly gunzTarPerm extractEntry src/core/enumerable.js
44843 silly gunzTarPerm modified mode [ 'src/core/enumerable.js', 438, 436 ]
44844 silly gunzTarPerm extractEntry src/core/anonymousobservable.js
44845 silly gunzTarPerm modified mode [ 'src/core/anonymousobservable.js', 438, 436 ]
44846 silly gunzTarPerm extractEntry function/ary.js
44847 silly gunzTarPerm modified mode [ 'function/ary.js', 420, 436 ]
44848 silly gunzTarPerm extractEntry function/wrap.js
44849 silly gunzTarPerm modified mode [ 'function/wrap.js', 420, 436 ]
44850 silly gunzTarPerm extractEntry function/flow.js
44851 silly gunzTarPerm modified mode [ 'function/flow.js', 420, 436 ]
44852 silly gunzTarPerm extractEntry object/assign.js
44853 silly gunzTarPerm modified mode [ 'object/assign.js', 420, 436 ]
44854 silly gunzTarPerm extractEntry src/core/autodetachobserver.js
44855 silly gunzTarPerm modified mode [ 'src/core/autodetachobserver.js', 438, 436 ]
44856 silly gunzTarPerm extractEntry src/core/observable.js
44857 silly gunzTarPerm modified mode [ 'src/core/observable.js', 438, 436 ]
44858 silly gunzTarPerm extractEntry function/flow.js
44859 silly gunzTarPerm modified mode [ 'function/flow.js', 420, 436 ]
44860 silly gunzTarPerm extractEntry object/assign.js
44861 silly gunzTarPerm modified mode [ 'object/assign.js', 420, 436 ]
44862 silly gunzTarPerm extractEntry object/functions.js
44863 silly gunzTarPerm modified mode [ 'object/functions.js', 420, 436 ]
44864 silly gunzTarPerm extractEntry object/get.js
44865 silly gunzTarPerm modified mode [ 'object/get.js', 420, 436 ]
44866 silly gunzTarPerm extractEntry src/core/observeonobserver.js
44867 silly gunzTarPerm modified mode [ 'src/core/observeonobserver.js', 438, 436 ]
44868 silly gunzTarPerm extractEntry src/core/observer-extras.js
44869 silly gunzTarPerm modified mode [ 'src/core/observer-extras.js', 438, 436 ]
44870 silly gunzTarPerm extractEntry object/functions.js
44871 silly gunzTarPerm modified mode [ 'object/functions.js', 420, 436 ]
44872 silly gunzTarPerm extractEntry object/get.js
44873 silly gunzTarPerm modified mode [ 'object/get.js', 420, 436 ]
44874 silly gunzTarPerm extractEntry object/has.js
44875 silly gunzTarPerm modified mode [ 'object/has.js', 420, 436 ]
44876 silly gunzTarPerm extractEntry object/forOwnRight.js
44877 silly gunzTarPerm modified mode [ 'object/forOwnRight.js', 420, 436 ]
44878 silly gunzTarPerm extractEntry src/core/observer-lite.js
44879 silly gunzTarPerm modified mode [ 'src/core/observer-lite.js', 438, 436 ]
44880 silly gunzTarPerm extractEntry src/core/observer.js
44881 silly gunzTarPerm modified mode [ 'src/core/observer.js', 438, 436 ]
44882 silly gunzTarPerm extractEntry src/core/anonymousobserver.js
44883 silly gunzTarPerm modified mode [ 'src/core/anonymousobserver.js', 438, 436 ]
44884 silly gunzTarPerm extractEntry object/has.js
44885 silly gunzTarPerm modified mode [ 'object/has.js', 420, 436 ]
44886 silly gunzTarPerm extractEntry object/forOwnRight.js
44887 silly gunzTarPerm modified mode [ 'object/forOwnRight.js', 420, 436 ]
44888 silly gunzTarPerm extractEntry src/core/scheduledobserver.js
44889 silly gunzTarPerm modified mode [ 'src/core/scheduledobserver.js', 438, 436 ]
44890 silly gunzTarPerm extractEntry object/keys.js
44891 silly gunzTarPerm modified mode [ 'object/keys.js', 420, 436 ]
44892 silly gunzTarPerm extractEntry object/keysIn.js
44893 silly gunzTarPerm modified mode [ 'object/keysIn.js', 420, 436 ]
44894 silly gunzTarPerm extractEntry src/core/notification.js
44895 silly gunzTarPerm modified mode [ 'src/core/notification.js', 438, 436 ]
44896 silly gunzTarPerm extractEntry src/core/linq/connectableobservable.js
44897 silly gunzTarPerm modified mode [ 'src/core/linq/connectableobservable.js', 438, 436 ]
44898 silly gunzTarPerm extractEntry src/core/linq/groupedobservable.js
44899 silly gunzTarPerm modified mode [ 'src/core/linq/groupedobservable.js', 438, 436 ]
44900 silly gunzTarPerm extractEntry src/core/linq/enumerable/while.js
44901 silly gunzTarPerm modified mode [ 'src/core/linq/enumerable/while.js', 438, 436 ]
44902 silly gunzTarPerm extractEntry object/keys.js
44903 silly gunzTarPerm modified mode [ 'object/keys.js', 420, 436 ]
44904 silly gunzTarPerm extractEntry object/keysIn.js
44905 silly gunzTarPerm modified mode [ 'object/keysIn.js', 420, 436 ]
44906 silly gunzTarPerm extractEntry src/core/linq/observable/_elementatordefault.js
44907 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_elementatordefault.js', 438, 436 ]
44908 silly gunzTarPerm extractEntry object/mapKeys.js
44909 silly gunzTarPerm modified mode [ 'object/mapKeys.js', 420, 436 ]
44910 silly gunzTarPerm extractEntry object/mapValues.js
44911 silly gunzTarPerm modified mode [ 'object/mapValues.js', 420, 436 ]
44912 silly gunzTarPerm extractEntry src/core/linq/observable/materialize.js
44913 silly gunzTarPerm modified mode [ 'src/core/linq/observable/materialize.js', 438, 436 ]
44914 silly gunzTarPerm extractEntry src/core/linq/observable/max.js
44915 silly gunzTarPerm modified mode [ 'src/core/linq/observable/max.js', 438, 436 ]
44916 silly gunzTarPerm extractEntry src/core/linq/observable/maxby.js
44917 silly gunzTarPerm modified mode [ 'src/core/linq/observable/maxby.js', 438, 436 ]
44918 silly gunzTarPerm extractEntry object/mapKeys.js
44919 silly gunzTarPerm modified mode [ 'object/mapKeys.js', 420, 436 ]
44920 silly gunzTarPerm extractEntry object/mapValues.js
44921 silly gunzTarPerm modified mode [ 'object/mapValues.js', 420, 436 ]
44922 silly gunzTarPerm extractEntry src/core/linq/observable/manyselect.js
44923 silly gunzTarPerm modified mode [ 'src/core/linq/observable/manyselect.js', 438, 436 ]
44924 silly gunzTarPerm extractEntry object/merge.js
44925 silly gunzTarPerm modified mode [ 'object/merge.js', 420, 436 ]
44926 silly gunzTarPerm extractEntry object/forOwn.js
44927 silly gunzTarPerm modified mode [ 'object/forOwn.js', 420, 436 ]
44928 silly gunzTarPerm extractEntry src/core/linq/observable/mergeall.js
44929 silly gunzTarPerm modified mode [ 'src/core/linq/observable/mergeall.js', 438, 436 ]
44930 silly gunzTarPerm extractEntry src/core/linq/observable/mergedelayerror.js
44931 silly gunzTarPerm modified mode [ 'src/core/linq/observable/mergedelayerror.js', 438, 436 ]
44932 silly gunzTarPerm extractEntry object/merge.js
44933 silly gunzTarPerm modified mode [ 'object/merge.js', 420, 436 ]
44934 silly gunzTarPerm extractEntry object/forOwn.js
44935 silly gunzTarPerm modified mode [ 'object/forOwn.js', 420, 436 ]
44936 silly gunzTarPerm extractEntry object/methods.js
44937 silly gunzTarPerm modified mode [ 'object/methods.js', 420, 436 ]
44938 silly gunzTarPerm extractEntry object/forInRight.js
44939 silly gunzTarPerm modified mode [ 'object/forInRight.js', 420, 436 ]
44940 silly gunzTarPerm extractEntry src/core/linq/observable/mergeproto.js
44941 silly gunzTarPerm modified mode [ 'src/core/linq/observable/mergeproto.js', 438, 436 ]
44942 silly gunzTarPerm extractEntry src/core/linq/observable/min.js
44943 silly gunzTarPerm modified mode [ 'src/core/linq/observable/min.js', 438, 436 ]
44944 silly gunzTarPerm extractEntry src/core/linq/observable/minby.js
44945 silly gunzTarPerm modified mode [ 'src/core/linq/observable/minby.js', 438, 436 ]
44946 silly gunzTarPerm extractEntry src/core/linq/observable/let.js
44947 silly gunzTarPerm modified mode [ 'src/core/linq/observable/let.js', 438, 436 ]
44948 silly gunzTarPerm extractEntry src/core/linq/observable/multicast.js
44949 silly gunzTarPerm modified mode [ 'src/core/linq/observable/multicast.js', 438, 436 ]
44950 silly gunzTarPerm extractEntry object/methods.js
44951 silly gunzTarPerm modified mode [ 'object/methods.js', 420, 436 ]
44952 silly gunzTarPerm extractEntry object/forInRight.js
44953 silly gunzTarPerm modified mode [ 'object/forInRight.js', 420, 436 ]
44954 silly gunzTarPerm extractEntry src/core/linq/observable/lastordefault.js
44955 silly gunzTarPerm modified mode [ 'src/core/linq/observable/lastordefault.js', 438, 436 ]
44956 silly gunzTarPerm extractEntry object/omit.js
44957 silly gunzTarPerm modified mode [ 'object/omit.js', 420, 436 ]
44958 silly gunzTarPerm extractEntry object/forIn.js
44959 silly gunzTarPerm modified mode [ 'object/forIn.js', 420, 436 ]
44960 silly gunzTarPerm extractEntry src/core/linq/observable/never.js
44961 silly gunzTarPerm modified mode [ 'src/core/linq/observable/never.js', 438, 436 ]
44962 silly gunzTarPerm extractEntry src/core/linq/observable/last.js
44963 silly gunzTarPerm modified mode [ 'src/core/linq/observable/last.js', 438, 436 ]
44964 silly gunzTarPerm extractEntry src/core/linq/observable/observeon.js
44965 silly gunzTarPerm modified mode [ 'src/core/linq/observable/observeon.js', 438, 436 ]
44966 silly gunzTarPerm extractEntry object/omit.js
44967 silly gunzTarPerm modified mode [ 'object/omit.js', 420, 436 ]
44968 silly gunzTarPerm extractEntry object/forIn.js
44969 silly gunzTarPerm modified mode [ 'object/forIn.js', 420, 436 ]
44970 silly gunzTarPerm extractEntry src/core/linq/observable/jortsortuntil.js
44971 silly gunzTarPerm modified mode [ 'src/core/linq/observable/jortsortuntil.js', 438, 436 ]
44972 silly gunzTarPerm extractEntry object/pairs.js
44973 silly gunzTarPerm modified mode [ 'object/pairs.js', 420, 436 ]
44974 silly gunzTarPerm extractEntry object/findLastKey.js
44975 silly gunzTarPerm modified mode [ 'object/findLastKey.js', 420, 436 ]
44976 silly gunzTarPerm extractEntry src/core/linq/observable/of.js
44977 silly gunzTarPerm modified mode [ 'src/core/linq/observable/of.js', 438, 436 ]
44978 silly gunzTarPerm extractEntry src/core/linq/observable/jortsort.js
44979 silly gunzTarPerm modified mode [ 'src/core/linq/observable/jortsort.js', 438, 436 ]
44980 silly gunzTarPerm extractEntry src/core/linq/observable/ofarraychanges.js
44981 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ofarraychanges.js', 438, 436 ]
44982 silly gunzTarPerm extractEntry object/pairs.js
44983 silly gunzTarPerm modified mode [ 'object/pairs.js', 420, 436 ]
44984 silly gunzTarPerm extractEntry object/findLastKey.js
44985 silly gunzTarPerm modified mode [ 'object/findLastKey.js', 420, 436 ]
44986 silly gunzTarPerm extractEntry src/core/linq/observable/join.js
44987 silly gunzTarPerm modified mode [ 'src/core/linq/observable/join.js', 438, 436 ]
44988 silly gunzTarPerm extractEntry object/pick.js
44989 silly gunzTarPerm modified mode [ 'object/pick.js', 420, 436 ]
44990 silly gunzTarPerm extractEntry object/findKey.js
44991 silly gunzTarPerm modified mode [ 'object/findKey.js', 420, 436 ]
44992 silly gunzTarPerm extractEntry src/core/linq/observable/ofobjectchanges.js
44993 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ofobjectchanges.js', 438, 436 ]
44994 silly gunzTarPerm extractEntry src/core/linq/observable/isempty.js
44995 silly gunzTarPerm modified mode [ 'src/core/linq/observable/isempty.js', 438, 436 ]
44996 silly gunzTarPerm extractEntry src/core/linq/observable/onerrorresumenext.js
44997 silly gunzTarPerm modified mode [ 'src/core/linq/observable/onerrorresumenext.js', 438, 436 ]
44998 silly gunzTarPerm extractEntry object/pick.js
44999 silly gunzTarPerm modified mode [ 'object/pick.js', 420, 436 ]
45000 silly gunzTarPerm extractEntry object/findKey.js
45001 silly gunzTarPerm modified mode [ 'object/findKey.js', 420, 436 ]
45002 silly gunzTarPerm extractEntry src/core/linq/observable/interval.js
45003 silly gunzTarPerm modified mode [ 'src/core/linq/observable/interval.js', 438, 436 ]
45004 silly gunzTarPerm extractEntry src/core/linq/observable/onerrorresumenextproto.js
45005 silly gunzTarPerm modified mode [ 'src/core/linq/observable/onerrorresumenextproto.js',
45005 silly gunzTarPerm 438,
45005 silly gunzTarPerm 436 ]
45006 silly gunzTarPerm extractEntry src/core/linq/observable/indexof.js
45007 silly gunzTarPerm modified mode [ 'src/core/linq/observable/indexof.js', 438, 436 ]
45008 silly gunzTarPerm extractEntry object/result.js
45009 silly gunzTarPerm modified mode [ 'object/result.js', 420, 436 ]
45010 silly gunzTarPerm extractEntry object/extend.js
45011 silly gunzTarPerm modified mode [ 'object/extend.js', 420, 436 ]
45012 silly gunzTarPerm extractEntry src/core/linq/observable/pairs.js
45013 silly gunzTarPerm modified mode [ 'src/core/linq/observable/pairs.js', 438, 436 ]
45014 silly gunzTarPerm extractEntry src/core/linq/observable/includes.js
45015 silly gunzTarPerm modified mode [ 'src/core/linq/observable/includes.js', 438, 436 ]
45016 silly gunzTarPerm extractEntry object/result.js
45017 silly gunzTarPerm modified mode [ 'object/result.js', 420, 436 ]
45018 silly gunzTarPerm extractEntry object/extend.js
45019 silly gunzTarPerm modified mode [ 'object/extend.js', 420, 436 ]
45020 silly gunzTarPerm extractEntry src/core/linq/observable/pairwise.js
45021 silly gunzTarPerm modified mode [ 'src/core/linq/observable/pairwise.js', 438, 436 ]
45022 silly gunzTarPerm extractEntry src/core/linq/observable/ignoreelements.js
45023 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ignoreelements.js', 438, 436 ]
45024 silly gunzTarPerm extractEntry object/set.js
45025 silly gunzTarPerm modified mode [ 'object/set.js', 420, 436 ]
45026 silly gunzTarPerm extractEntry object/defaultsDeep.js
45027 silly gunzTarPerm modified mode [ 'object/defaultsDeep.js', 420, 436 ]
45028 silly gunzTarPerm extractEntry src/core/linq/observable/partition.js
45029 silly gunzTarPerm modified mode [ 'src/core/linq/observable/partition.js', 438, 436 ]
45030 silly gunzTarPerm extractEntry src/core/linq/observable/if.js
45031 silly gunzTarPerm modified mode [ 'src/core/linq/observable/if.js', 438, 436 ]
45032 silly gunzTarPerm extractEntry object/set.js
45033 silly gunzTarPerm modified mode [ 'object/set.js', 420, 436 ]
45034 silly gunzTarPerm extractEntry object/defaultsDeep.js
45035 silly gunzTarPerm modified mode [ 'object/defaultsDeep.js', 420, 436 ]
45036 silly gunzTarPerm extractEntry src/core/linq/observable/pipe.js
45037 silly gunzTarPerm modified mode [ 'src/core/linq/observable/pipe.js', 438, 436 ]
45038 silly gunzTarPerm extractEntry object/transform.js
45039 silly gunzTarPerm modified mode [ 'object/transform.js', 420, 436 ]
45040 silly gunzTarPerm extractEntry object/defaults.js
45041 silly gunzTarPerm modified mode [ 'object/defaults.js', 420, 436 ]
45042 silly gunzTarPerm extractEntry object/transform.js
45043 silly gunzTarPerm modified mode [ 'object/transform.js', 420, 436 ]
45044 silly gunzTarPerm extractEntry object/defaults.js
45045 silly gunzTarPerm modified mode [ 'object/defaults.js', 420, 436 ]
45046 silly gunzTarPerm extractEntry src/core/linq/observable/groupjoin.js
45047 silly gunzTarPerm modified mode [ 'src/core/linq/observable/groupjoin.js', 438, 436 ]
45048 silly gunzTarPerm extractEntry src/core/linq/observable/pluck.js
45049 silly gunzTarPerm modified mode [ 'src/core/linq/observable/pluck.js', 438, 436 ]
45050 silly gunzTarPerm extractEntry src/core/linq/observable/groupbyuntil.js
45051 silly gunzTarPerm modified mode [ 'src/core/linq/observable/groupbyuntil.js', 438, 436 ]
45052 silly gunzTarPerm extractEntry src/core/linq/observable/publish.js
45053 silly gunzTarPerm modified mode [ 'src/core/linq/observable/publish.js', 438, 436 ]
45054 silly gunzTarPerm extractEntry object/values.js
45055 silly gunzTarPerm modified mode [ 'object/values.js', 420, 436 ]
45056 silly gunzTarPerm extractEntry object/create.js
45057 silly gunzTarPerm modified mode [ 'object/create.js', 420, 436 ]
45058 silly gunzTarPerm extractEntry src/core/linq/observable/groupby.js
45059 silly gunzTarPerm modified mode [ 'src/core/linq/observable/groupby.js', 438, 436 ]
45060 silly gunzTarPerm extractEntry src/core/linq/observable/publishlast.js
45061 silly gunzTarPerm modified mode [ 'src/core/linq/observable/publishlast.js', 438, 436 ]
45062 silly gunzTarPerm extractEntry object/values.js
45063 silly gunzTarPerm modified mode [ 'object/values.js', 420, 436 ]
45064 silly gunzTarPerm extractEntry object/create.js
45065 silly gunzTarPerm modified mode [ 'object/create.js', 420, 436 ]
45066 silly gunzTarPerm extractEntry src/core/linq/observable/generatewithrelativetime.js
45067 silly gunzTarPerm modified mode [ 'src/core/linq/observable/generatewithrelativetime.js',
45067 silly gunzTarPerm 438,
45067 silly gunzTarPerm 436 ]
45068 silly gunzTarPerm extractEntry src/core/linq/observable/publishvalue.js
45069 silly gunzTarPerm modified mode [ 'src/core/linq/observable/publishvalue.js', 438, 436 ]
45070 silly gunzTarPerm extractEntry object/valuesIn.js
45071 silly gunzTarPerm modified mode [ 'object/valuesIn.js', 420, 436 ]
45072 silly gunzTarPerm extractEntry object/invert.js
45073 silly gunzTarPerm modified mode [ 'object/invert.js', 420, 436 ]
45074 silly gunzTarPerm extractEntry src/core/linq/observable/generatewithabsolutetime.js
45075 silly gunzTarPerm modified mode [ 'src/core/linq/observable/generatewithabsolutetime.js',
45075 silly gunzTarPerm 438,
45075 silly gunzTarPerm 436 ]
45076 silly gunzTarPerm extractEntry src/core/linq/observable/range.js
45077 silly gunzTarPerm modified mode [ 'src/core/linq/observable/range.js', 438, 436 ]
45078 silly gunzTarPerm extractEntry object/valuesIn.js
45079 silly gunzTarPerm modified mode [ 'object/valuesIn.js', 420, 436 ]
45080 silly gunzTarPerm extractEntry object/invert.js
45081 silly gunzTarPerm modified mode [ 'object/invert.js', 420, 436 ]
45082 silly gunzTarPerm extractEntry src/core/linq/observable/generate.js
45083 silly gunzTarPerm modified mode [ 'src/core/linq/observable/generate.js', 438, 436 ]
45084 silly gunzTarPerm extractEntry src/core/linq/observable/reduce.js
45085 silly gunzTarPerm modified mode [ 'src/core/linq/observable/reduce.js', 438, 436 ]
45086 silly gunzTarPerm extractEntry src/core/linq/observable/frompromise.js
45087 silly gunzTarPerm modified mode [ 'src/core/linq/observable/frompromise.js', 438, 436 ]
45088 silly gunzTarPerm extractEntry date/now.js
45089 silly gunzTarPerm modified mode [ 'date/now.js', 420, 436 ]
45090 silly gunzTarPerm extractEntry internal/LazyWrapper.js
45091 silly gunzTarPerm modified mode [ 'internal/LazyWrapper.js', 420, 436 ]
45092 silly gunzTarPerm extractEntry src/core/linq/observable/repeat.js
45093 silly gunzTarPerm modified mode [ 'src/core/linq/observable/repeat.js', 438, 436 ]
45094 silly gunzTarPerm extractEntry src/core/linq/observable/fromnodecallback.js
45095 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromnodecallback.js', 438, 436 ]
45096 silly gunzTarPerm extractEntry date/now.js
45097 silly gunzTarPerm modified mode [ 'date/now.js', 420, 436 ]
45098 silly gunzTarPerm extractEntry internal/LazyWrapper.js
45099 silly gunzTarPerm modified mode [ 'internal/LazyWrapper.js', 420, 436 ]
45100 silly gunzTarPerm extractEntry src/core/linq/observable/repeatproto.js
45101 silly gunzTarPerm modified mode [ 'src/core/linq/observable/repeatproto.js', 438, 436 ]
45102 silly gunzTarPerm extractEntry src/core/linq/observable/fromeventpattern.js
45103 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromeventpattern.js', 438, 436 ]
45104 silly gunzTarPerm extractEntry internal/compareAscending.js
45105 silly gunzTarPerm modified mode [ 'internal/compareAscending.js', 420, 436 ]
45106 silly gunzTarPerm extractEntry internal/compareMultiple.js
45107 silly gunzTarPerm modified mode [ 'internal/compareMultiple.js', 420, 436 ]
45108 silly gunzTarPerm extractEntry internal/compareAscending.js
45109 silly gunzTarPerm modified mode [ 'internal/compareAscending.js', 420, 436 ]
45110 silly gunzTarPerm extractEntry internal/compareMultiple.js
45111 silly gunzTarPerm modified mode [ 'internal/compareMultiple.js', 420, 436 ]
45112 silly gunzTarPerm extractEntry src/core/linq/observable/replay.js
45113 silly gunzTarPerm modified mode [ 'src/core/linq/observable/replay.js', 438, 436 ]
45114 silly gunzTarPerm extractEntry src/core/linq/observable/fromevent.js
45115 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromevent.js', 438, 436 ]
45116 silly gunzTarPerm extractEntry src/core/linq/observable/retry.js
45117 silly gunzTarPerm modified mode [ 'src/core/linq/observable/retry.js', 438, 436 ]
45118 silly gunzTarPerm extractEntry internal/composeArgs.js
45119 silly gunzTarPerm modified mode [ 'internal/composeArgs.js', 420, 436 ]
45120 silly gunzTarPerm extractEntry internal/charsRightIndex.js
45121 silly gunzTarPerm modified mode [ 'internal/charsRightIndex.js', 420, 436 ]
45122 silly gunzTarPerm extractEntry src/core/linq/observable/fromevent-modern.js
45123 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromevent-modern.js', 438, 436 ]
45124 silly gunzTarPerm extractEntry src/core/linq/observable/retrywhen.js
45125 silly gunzTarPerm modified mode [ 'src/core/linq/observable/retrywhen.js', 438, 436 ]
45126 silly gunzTarPerm extractEntry internal/composeArgs.js
45127 silly gunzTarPerm modified mode [ 'internal/composeArgs.js', 420, 436 ]
45128 silly gunzTarPerm extractEntry internal/charsRightIndex.js
45129 silly gunzTarPerm modified mode [ 'internal/charsRightIndex.js', 420, 436 ]
45130 silly gunzTarPerm extractEntry src/core/linq/observable/fromcallback.js
45131 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromcallback.js', 438, 436 ]
45132 silly gunzTarPerm extractEntry src/core/linq/observable/return.js
45133 silly gunzTarPerm modified mode [ 'src/core/linq/observable/return.js', 438, 436 ]
45134 silly gunzTarPerm extractEntry internal/createAggregator.js
45135 silly gunzTarPerm modified mode [ 'internal/createAggregator.js', 420, 436 ]
45136 silly gunzTarPerm extractEntry internal/createAssigner.js
45137 silly gunzTarPerm modified mode [ 'internal/createAssigner.js', 420, 436 ]
45138 silly gunzTarPerm extractEntry src/core/linq/observable/fromarray.js
45139 silly gunzTarPerm modified mode [ 'src/core/linq/observable/fromarray.js', 438, 436 ]
45140 silly gunzTarPerm extractEntry src/core/linq/observable/sample.js
45141 silly gunzTarPerm modified mode [ 'src/core/linq/observable/sample.js', 438, 436 ]
45142 silly gunzTarPerm extractEntry internal/createAggregator.js
45143 silly gunzTarPerm modified mode [ 'internal/createAggregator.js', 420, 436 ]
45144 silly gunzTarPerm extractEntry internal/createAssigner.js
45145 silly gunzTarPerm modified mode [ 'internal/createAssigner.js', 420, 436 ]
45146 silly gunzTarPerm extractEntry src/core/linq/observable/from.js
45147 silly gunzTarPerm modified mode [ 'src/core/linq/observable/from.js', 438, 436 ]
45148 http fetch 200 https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
45149 silly gunzTarPerm extractEntry internal/createBaseEach.js
45150 silly gunzTarPerm modified mode [ 'internal/createBaseEach.js', 420, 436 ]
45151 silly gunzTarPerm extractEntry internal/createBaseFor.js
45152 silly gunzTarPerm modified mode [ 'internal/createBaseFor.js', 420, 436 ]
45153 silly fetchAndShaCheck shasum a9219960a6d5d5d046597aee51252c6655f7177e
45154 verbose addTmpTarball /tmp/npm-30115-af71656d/registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz not in flight; adding
45155 verbose addTmpTarball validating metadata from /tmp/npm-30115-af71656d/registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
45156 verbose tar unpack /tmp/npm-30115-af71656d/registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz
45157 verbose tar unpacking to /tmp/npm-30115-af71656d/unpack-dfb33a47340d
45158 silly gentlyRm /tmp/npm-30115-af71656d/unpack-dfb33a47340d is being purged
45159 verbose gentlyRm don't care about contents; nuking /tmp/npm-30115-af71656d/unpack-dfb33a47340d
45160 silly gunzTarPerm extractEntry internal/createBaseEach.js
45161 silly gunzTarPerm modified mode [ 'internal/createBaseEach.js', 420, 436 ]
45162 silly gunzTarPerm extractEntry internal/createBaseFor.js
45163 silly gunzTarPerm modified mode [ 'internal/createBaseFor.js', 420, 436 ]
45164 silly gunzTarPerm modes [ '775', '664' ]
45165 silly gunzTarPerm extractEntry src/core/linq/observable/scan.js
45166 silly gunzTarPerm modified mode [ 'src/core/linq/observable/scan.js', 438, 436 ]
45167 silly gunzTarPerm extractEntry src/core/linq/observable/forkjoinproto.js
45168 silly gunzTarPerm modified mode [ 'src/core/linq/observable/forkjoinproto.js', 438, 436 ]
45169 silly gunzTarPerm extractEntry src/core/linq/observable/select.js
45170 silly gunzTarPerm modified mode [ 'src/core/linq/observable/select.js', 438, 436 ]
45171 silly gunzTarPerm extractEntry src/core/linq/observable/forkjoin.js
45172 silly gunzTarPerm modified mode [ 'src/core/linq/observable/forkjoin.js', 438, 436 ]
45173 silly gunzTarPerm extractEntry internal/createBindWrapper.js
45174 silly gunzTarPerm modified mode [ 'internal/createBindWrapper.js', 420, 436 ]
45175 silly gunzTarPerm extractEntry internal/charsLeftIndex.js
45176 silly gunzTarPerm modified mode [ 'internal/charsLeftIndex.js', 420, 436 ]
45177 silly gunzTarPerm extractEntry package.json
45178 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
45179 silly gunzTarPerm extractEntry internal/createBindWrapper.js
45180 silly gunzTarPerm modified mode [ 'internal/createBindWrapper.js', 420, 436 ]
45181 silly gunzTarPerm extractEntry internal/charsLeftIndex.js
45182 silly gunzTarPerm modified mode [ 'internal/charsLeftIndex.js', 420, 436 ]
45183 silly gunzTarPerm extractEntry README.md
45184 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
45185 silly gunzTarPerm extractEntry LICENSE
45186 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
45187 silly gunzTarPerm extractEntry src/core/linq/observable/selectmany.js
45188 silly gunzTarPerm modified mode [ 'src/core/linq/observable/selectmany.js', 438, 436 ]
45189 silly gunzTarPerm extractEntry src/core/linq/observable/for.js
45190 silly gunzTarPerm modified mode [ 'src/core/linq/observable/for.js', 438, 436 ]
45191 silly gunzTarPerm extractEntry internal/createCache.js
45192 silly gunzTarPerm modified mode [ 'internal/createCache.js', 420, 436 ]
45193 silly gunzTarPerm extractEntry internal/cachePush.js
45194 silly gunzTarPerm modified mode [ 'internal/cachePush.js', 420, 436 ]
45195 silly gunzTarPerm extractEntry internal/createCache.js
45196 silly gunzTarPerm modified mode [ 'internal/createCache.js', 420, 436 ]
45197 silly gunzTarPerm extractEntry internal/cachePush.js
45198 silly gunzTarPerm modified mode [ 'internal/cachePush.js', 420, 436 ]
45199 silly gunzTarPerm extractEntry mute.js
45200 silly gunzTarPerm modified mode [ 'mute.js', 420, 436 ]
45201 silly gunzTarPerm extractEntry test/basic.js
45202 silly gunzTarPerm modified mode [ 'test/basic.js', 420, 436 ]
45203 silly gunzTarPerm extractEntry internal/createCompounder.js
45204 silly gunzTarPerm modified mode [ 'internal/createCompounder.js', 420, 436 ]
45205 silly gunzTarPerm extractEntry internal/cacheIndexOf.js
45206 silly gunzTarPerm modified mode [ 'internal/cacheIndexOf.js', 420, 436 ]
45207 silly gunzTarPerm extractEntry src/core/linq/observable/selectmanyobserver.js
45208 silly gunzTarPerm modified mode [ 'src/core/linq/observable/selectmanyobserver.js', 438, 436 ]
45209 silly gunzTarPerm extractEntry src/core/linq/observable/flatmapwithconcurrencylimit.js
45210 silly gunzTarPerm modified mode [ 'src/core/linq/observable/flatmapwithconcurrencylimit.js',
45210 silly gunzTarPerm 438,
45210 silly gunzTarPerm 436 ]
45211 silly gunzTarPerm extractEntry src/core/linq/observable/selectswitch.js
45212 silly gunzTarPerm modified mode [ 'src/core/linq/observable/selectswitch.js', 438, 436 ]
45213 silly gunzTarPerm extractEntry src/core/linq/observable/firstordefault.js
45214 silly gunzTarPerm modified mode [ 'src/core/linq/observable/firstordefault.js', 438, 436 ]
45215 silly gunzTarPerm extractEntry src/core/linq/observable/sequenceequal.js
45216 silly gunzTarPerm modified mode [ 'src/core/linq/observable/sequenceequal.js', 438, 436 ]
45217 silly gunzTarPerm extractEntry internal/createCompounder.js
45218 silly gunzTarPerm modified mode [ 'internal/createCompounder.js', 420, 436 ]
45219 silly gunzTarPerm extractEntry internal/cacheIndexOf.js
45220 silly gunzTarPerm modified mode [ 'internal/cacheIndexOf.js', 420, 436 ]
45221 silly gunzTarPerm extractEntry src/core/linq/observable/first.js
45222 silly gunzTarPerm modified mode [ 'src/core/linq/observable/first.js', 438, 436 ]
45223 silly gunzTarPerm extractEntry internal/createCtorWrapper.js
45224 silly gunzTarPerm modified mode [ 'internal/createCtorWrapper.js', 420, 436 ]
45225 silly gunzTarPerm extractEntry internal/bufferClone.js
45226 silly gunzTarPerm modified mode [ 'internal/bufferClone.js', 420, 436 ]
45227 silly gunzTarPerm extractEntry src/core/linq/observable/share.js
45228 silly gunzTarPerm modified mode [ 'src/core/linq/observable/share.js', 438, 436 ]
45229 silly gunzTarPerm extractEntry internal/createCtorWrapper.js
45230 silly gunzTarPerm modified mode [ 'internal/createCtorWrapper.js', 420, 436 ]
45231 silly gunzTarPerm extractEntry internal/bufferClone.js
45232 silly gunzTarPerm modified mode [ 'internal/bufferClone.js', 420, 436 ]
45233 silly gunzTarPerm extractEntry internal/createCurry.js
45234 silly gunzTarPerm modified mode [ 'internal/createCurry.js', 420, 436 ]
45235 silly gunzTarPerm extractEntry internal/bindCallback.js
45236 silly gunzTarPerm modified mode [ 'internal/bindCallback.js', 420, 436 ]
45237 silly gunzTarPerm extractEntry src/core/linq/observable/findindex.js
45238 silly gunzTarPerm modified mode [ 'src/core/linq/observable/findindex.js', 438, 436 ]
45239 silly gunzTarPerm extractEntry src/core/linq/observable/sharereplay.js
45240 silly gunzTarPerm modified mode [ 'src/core/linq/observable/sharereplay.js', 438, 436 ]
45241 silly gunzTarPerm extractEntry src/core/linq/observable/find.js
45242 silly gunzTarPerm modified mode [ 'src/core/linq/observable/find.js', 438, 436 ]
45243 silly gunzTarPerm extractEntry src/core/linq/observable/sharevalue.js
45244 silly gunzTarPerm modified mode [ 'src/core/linq/observable/sharevalue.js', 438, 436 ]
45245 silly gunzTarPerm extractEntry src/core/linq/observable/finally.js
45246 silly gunzTarPerm modified mode [ 'src/core/linq/observable/finally.js', 438, 436 ]
45247 silly gunzTarPerm extractEntry internal/createCurry.js
45248 silly gunzTarPerm modified mode [ 'internal/createCurry.js', 420, 436 ]
45249 silly gunzTarPerm extractEntry internal/bindCallback.js
45250 silly gunzTarPerm modified mode [ 'internal/bindCallback.js', 420, 436 ]
45251 silly gunzTarPerm extractEntry src/core/linq/observable/single.js
45252 silly gunzTarPerm modified mode [ 'src/core/linq/observable/single.js', 438, 436 ]
45253 silly gunzTarPerm extractEntry internal/createDefaults.js
45254 silly gunzTarPerm modified mode [ 'internal/createDefaults.js', 420, 436 ]
45255 silly gunzTarPerm extractEntry internal/binaryIndexBy.js
45256 silly gunzTarPerm modified mode [ 'internal/binaryIndexBy.js', 420, 436 ]
45257 silly gunzTarPerm extractEntry src/core/linq/observable/expand.js
45258 silly gunzTarPerm modified mode [ 'src/core/linq/observable/expand.js', 438, 436 ]
45259 silly gunzTarPerm extractEntry src/core/linq/observable/singleinstance.js
45260 silly gunzTarPerm modified mode [ 'src/core/linq/observable/singleinstance.js', 438, 436 ]
45261 silly gunzTarPerm extractEntry src/core/linq/observable/exclusivemap.js
45262 silly gunzTarPerm modified mode [ 'src/core/linq/observable/exclusivemap.js', 438, 436 ]
45263 silly gunzTarPerm extractEntry internal/createDefaults.js
45264 silly gunzTarPerm modified mode [ 'internal/createDefaults.js', 420, 436 ]
45265 silly gunzTarPerm extractEntry internal/binaryIndexBy.js
45266 silly gunzTarPerm modified mode [ 'internal/binaryIndexBy.js', 420, 436 ]
45267 silly gunzTarPerm extractEntry src/core/linq/observable/singleordefault.js
45268 silly gunzTarPerm modified mode [ 'src/core/linq/observable/singleordefault.js', 438, 436 ]
45269 silly gunzTarPerm extractEntry src/core/linq/observable/exclusive.js
45270 silly gunzTarPerm modified mode [ 'src/core/linq/observable/exclusive.js', 438, 436 ]
45271 silly gunzTarPerm extractEntry internal/createExtremum.js
45272 silly gunzTarPerm modified mode [ 'internal/createExtremum.js', 420, 436 ]
45273 silly gunzTarPerm extractEntry internal/binaryIndex.js
45274 silly gunzTarPerm modified mode [ 'internal/binaryIndex.js', 420, 436 ]
45275 silly gunzTarPerm extractEntry src/core/linq/observable/skip.js
45276 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skip.js', 438, 436 ]
45277 silly gunzTarPerm extractEntry src/core/linq/observable/every.js
45278 silly gunzTarPerm modified mode [ 'src/core/linq/observable/every.js', 438, 436 ]
45279 silly gunzTarPerm extractEntry src/core/linq/observable/skiplast.js
45280 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skiplast.js', 438, 436 ]
45281 silly gunzTarPerm extractEntry internal/createExtremum.js
45282 silly gunzTarPerm modified mode [ 'internal/createExtremum.js', 420, 436 ]
45283 silly gunzTarPerm extractEntry internal/binaryIndex.js
45284 silly gunzTarPerm modified mode [ 'internal/binaryIndex.js', 420, 436 ]
45285 silly gunzTarPerm extractEntry src/core/linq/observable/empty.js
45286 silly gunzTarPerm modified mode [ 'src/core/linq/observable/empty.js', 438, 436 ]
45287 silly gunzTarPerm extractEntry internal/createFind.js
45288 silly gunzTarPerm modified mode [ 'internal/createFind.js', 420, 436 ]
45289 silly gunzTarPerm extractEntry internal/baseWrapperValue.js
45290 silly gunzTarPerm modified mode [ 'internal/baseWrapperValue.js', 420, 436 ]
45291 silly gunzTarPerm extractEntry src/core/linq/observable/skiplastwithtime.js
45292 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skiplastwithtime.js', 438, 436 ]
45293 silly gunzTarPerm extractEntry src/core/linq/observable/elementatordefault.js
45294 silly gunzTarPerm modified mode [ 'src/core/linq/observable/elementatordefault.js', 438, 436 ]
45295 silly gunzTarPerm extractEntry src/core/linq/observable/skipuntil.js
45296 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skipuntil.js', 438, 436 ]
45297 silly gunzTarPerm extractEntry internal/createFind.js
45298 silly gunzTarPerm modified mode [ 'internal/createFind.js', 420, 436 ]
45299 silly gunzTarPerm extractEntry internal/baseWrapperValue.js
45300 silly gunzTarPerm modified mode [ 'internal/baseWrapperValue.js', 420, 436 ]
45301 silly gunzTarPerm extractEntry src/core/linq/observable/elementat.js
45302 silly gunzTarPerm modified mode [ 'src/core/linq/observable/elementat.js', 438, 436 ]
45303 silly gunzTarPerm extractEntry internal/createFindIndex.js
45304 silly gunzTarPerm modified mode [ 'internal/createFindIndex.js', 420, 436 ]
45305 silly gunzTarPerm extractEntry internal/baseWhile.js
45306 silly gunzTarPerm modified mode [ 'internal/baseWhile.js', 420, 436 ]
45307 silly gunzTarPerm extractEntry src/core/linq/observable/skipuntilwithtime.js
45308 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skipuntilwithtime.js', 438, 436 ]
45309 silly gunzTarPerm extractEntry src/core/linq/observable/dowhile.js
45310 silly gunzTarPerm modified mode [ 'src/core/linq/observable/dowhile.js', 438, 436 ]
45311 silly gunzTarPerm extractEntry src/core/linq/observable/skipwhile.js
45312 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skipwhile.js', 438, 436 ]
45313 silly gunzTarPerm extractEntry internal/createFindIndex.js
45314 silly gunzTarPerm modified mode [ 'internal/createFindIndex.js', 420, 436 ]
45315 silly gunzTarPerm extractEntry internal/baseWhile.js
45316 silly gunzTarPerm modified mode [ 'internal/baseWhile.js', 420, 436 ]
45317 silly gunzTarPerm extractEntry src/core/linq/observable/do.js
45318 silly gunzTarPerm modified mode [ 'src/core/linq/observable/do.js', 438, 436 ]
45319 silly gunzTarPerm extractEntry internal/createFindKey.js
45320 silly gunzTarPerm modified mode [ 'internal/createFindKey.js', 420, 436 ]
45321 silly gunzTarPerm extractEntry internal/baseValues.js
45322 silly gunzTarPerm modified mode [ 'internal/baseValues.js', 420, 436 ]
45323 silly gunzTarPerm extractEntry src/core/linq/observable/skipwithtime.js
45324 silly gunzTarPerm modified mode [ 'src/core/linq/observable/skipwithtime.js', 438, 436 ]
45325 silly gunzTarPerm extractEntry src/core/linq/observable/distinctuntilchanged.js
45326 silly gunzTarPerm modified mode [ 'src/core/linq/observable/distinctuntilchanged.js', 438, 436 ]
45327 silly gunzTarPerm extractEntry src/core/linq/observable/some.js
45328 silly gunzTarPerm modified mode [ 'src/core/linq/observable/some.js', 438, 436 ]
45329 silly gunzTarPerm extractEntry internal/createFindKey.js
45330 silly gunzTarPerm modified mode [ 'internal/createFindKey.js', 420, 436 ]
45331 silly gunzTarPerm extractEntry internal/baseValues.js
45332 silly gunzTarPerm modified mode [ 'internal/baseValues.js', 420, 436 ]
45333 silly gunzTarPerm extractEntry src/core/linq/observable/distinct.js
45334 silly gunzTarPerm modified mode [ 'src/core/linq/observable/distinct.js', 438, 436 ]
45335 silly cache afterAdd mute-stream@0.0.4
45336 verbose afterAdd /home/lukas/.npm/mute-stream/0.0.4/package/package.json not in flight; writing
45337 silly gunzTarPerm extractEntry internal/createFlow.js
45338 silly gunzTarPerm modified mode [ 'internal/createFlow.js', 420, 436 ]
45339 silly gunzTarPerm extractEntry internal/baseUniq.js
45340 silly gunzTarPerm modified mode [ 'internal/baseUniq.js', 420, 436 ]
45341 silly gunzTarPerm extractEntry internal/createFlow.js
45342 silly gunzTarPerm modified mode [ 'internal/createFlow.js', 420, 436 ]
45343 silly gunzTarPerm extractEntry internal/baseUniq.js
45344 silly gunzTarPerm modified mode [ 'internal/baseUniq.js', 420, 436 ]
45345 verbose afterAdd /home/lukas/.npm/mute-stream/0.0.4/package/package.json written
45346 silly install resolved [ { name: 'strip-ansi',
45346 silly install resolved version: '2.0.1',
45346 silly install resolved description: 'Strip ANSI escape codes',
45346 silly install resolved license: 'MIT',
45346 silly install resolved repository:
45346 silly install resolved { type: 'git',
45346 silly install resolved url: 'git+https://github.com/sindresorhus/strip-ansi.git' },
45346 silly install resolved author:
45346 silly install resolved { name: 'Sindre Sorhus',
45346 silly install resolved email: 'sindresorhus@gmail.com',
45346 silly install resolved url: 'http://sindresorhus.com' },
45346 silly install resolved bin: { 'strip-ansi': 'cli.js' },
45346 silly install resolved engines: { node: '>=0.10.0' },
45346 silly install resolved scripts: { test: 'mocha' },
45346 silly install resolved files: [ 'index.js', 'cli.js' ],
45346 silly install resolved keywords:
45346 silly install resolved [ 'strip',
45346 silly install resolved 'trim',
45346 silly install resolved 'remove',
45346 silly install resolved 'ansi',
45346 silly install resolved 'styles',
45346 silly install resolved 'color',
45346 silly install resolved 'colour',
45346 silly install resolved 'colors',
45346 silly install resolved 'terminal',
45346 silly install resolved 'console',
45346 silly install resolved 'cli',
45346 silly install resolved 'string',
45346 silly install resolved 'tty',
45346 silly install resolved 'escape',
45346 silly install resolved 'formatting',
45346 silly install resolved 'rgb',
45346 silly install resolved '256',
45346 silly install resolved 'shell',
45346 silly install resolved 'xterm',
45346 silly install resolved 'log',
45346 silly install resolved 'logging',
45346 silly install resolved 'command-line',
45346 silly install resolved 'text' ],
45346 silly install resolved dependencies: { 'ansi-regex': '^1.0.0' },
45346 silly install resolved devDependencies: { mocha: '*' },
45346 silly install resolved readme: '# strip-ansi [![Build Status](https://travis-ci.org/sindresorhus/strip-ansi.svg?branch=master)](https://travis-ci.org/sindresorhus/strip-ansi)\n\n> Strip [ANSI escape codes](http://en.wikipedia.org/wiki/ANSI_escape_code)\n\n\n## Install\n\n```sh\n$ npm install --save strip-ansi\n```\n\n\n## Usage\n\n```js\nvar stripAnsi = require(\'strip-ansi\');\n\nstripAnsi(\'\\u001b[4mcake\\u001b[0m\');\n//=> \'cake\'\n```\n\n\n## CLI\n\n```sh\n$ npm install --global strip-ansi\n```\n\n```sh\n$ strip-ansi --help\n\n Usage\n strip-ansi <input-file> > <output-file>\n cat <input-file> | strip-ansi > <output-file>\n\n Example\n strip-ansi unicorn.txt > unicorn-stripped.txt\n```\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n',
45346 silly install resolved readmeFilename: 'readme.md',
45346 silly install resolved bugs: { url: 'https://github.com/sindresorhus/strip-ansi/issues' },
45346 silly install resolved homepage: 'https://github.com/sindresorhus/strip-ansi#readme',
45346 silly install resolved _id: 'strip-ansi@2.0.1',
45346 silly install resolved _shasum: 'df62c1aa94ed2f114e1d0f21fd1d50482b79a60e',
45346 silly install resolved _resolved: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz',
45346 silly install resolved _from: 'https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz' },
45346 silly install resolved { name: 'mute-stream',
45346 silly install resolved version: '0.0.4',
45346 silly install resolved main: 'mute.js',
45346 silly install resolved directories: { test: 'test' },
45346 silly install resolved devDependencies: { tap: '~0.2.5' },
45346 silly install resolved scripts: { test: 'tap test/*.js' },
45346 silly install resolved repository: { type: 'git', url: 'git://github.com/isaacs/mute-stream.git' },
45346 silly install resolved keywords: [ 'mute', 'stream', 'pipe' ],
45346 silly install resolved author:
45346 silly install resolved { name: 'Isaac Z. Schlueter',
45346 silly install resolved email: 'i@izs.me',
45346 silly install resolved url: 'http://blog.izs.me/' },
45346 silly install resolved license: 'BSD',
45346 silly install resolved description: 'Bytes go in, but they don\'t come out (when muted).',
45346 silly install resolved readme: '# mute-stream\n\nBytes go in, but they don\'t come out (when muted).\n\nThis is a basic pass-through stream, but when muted, the bytes are\nsilently dropped, rather than being passed through.\n\n## Usage\n\n```javascript\nvar MuteStream = require(\'mute-stream\')\n\nvar ms = new MuteStream(options)\n\nms.pipe(process.stdout)\nms.write(\'foo\') // writes \'foo\' to stdout\nms.mute()\nms.write(\'bar\') // does not write \'bar\'\nms.unmute()\nms.write(\'baz\') // writes \'baz\' to stdout\n\n// can also be used to mute incoming data\nvar ms = new MuteStream\ninput.pipe(ms)\n\nms.on(\'data\', function (c) {\n console.log(\'data: \' + c)\n})\n\ninput.emit(\'data\', \'foo\') // logs \'foo\'\nms.mute()\ninput.emit(\'data\', \'bar\') // does not log \'bar\'\nms.unmute()\ninput.emit(\'data\', \'baz\') // logs \'baz\'\n```\n\n## Options\n\nAll options are optional.\n\n* `replace` Set to a string to replace each character with the\n specified string when muted. (So you can show `****` instead of the\n password, for example.)\n\n* `prompt` If you are using a replacement char, and also using a\n prompt with a readline stream (as for a `Password: *****` input),\n then specify what the prompt is so that backspace will work\n properly. Otherwise, pressing backspace will overwrite the prompt\n with the replacement character, which is weird.\n\n## ms.mute()\n\nSet `muted` to `true`. Turns `.write()` into a no-op.\n\n## ms.unmute()\n\nSet `muted` to `false`\n\n## ms.isTTY\n\nTrue if the pipe destination is a TTY, or if the incoming pipe source is\na TTY.\n\n## Other stream methods...\n\nThe other standard readable and writable stream methods are all\navailable. The MuteStream object acts as a facade to its pipe source\nand destination.\n',
45346 silly install resolved readmeFilename: 'README.md',
45346 silly install resolved bugs: { url: 'https://github.com/isaacs/mute-stream/issues' },
45346 silly install resolved homepage: 'https://github.com/isaacs/mute-stream#readme',
45346 silly install resolved _id: 'mute-stream@0.0.4',
45346 silly install resolved _shasum: 'a9219960a6d5d5d046597aee51252c6655f7177e',
45346 silly install resolved _resolved: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz',
45346 silly install resolved _from: 'https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz' } ]
45347 info install strip-ansi@2.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
45348 info install mute-stream@0.0.4 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
45349 info installOne strip-ansi@2.0.1
45350 verbose installOne of strip-ansi to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2 not in flight; installing
45351 info installOne mute-stream@0.0.4
45352 verbose installOne of mute-stream to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2 not in flight; installing
45353 silly gunzTarPerm extractEntry src/core/linq/observable/spawn.js
45354 silly gunzTarPerm modified mode [ 'src/core/linq/observable/spawn.js', 438, 436 ]
45355 silly gunzTarPerm extractEntry src/core/linq/observable/dematerialize.js
45356 silly gunzTarPerm modified mode [ 'src/core/linq/observable/dematerialize.js', 438, 436 ]
45357 silly gunzTarPerm extractEntry src/core/linq/observable/start.js
45358 silly gunzTarPerm modified mode [ 'src/core/linq/observable/start.js', 438, 436 ]
45359 verbose lock using /home/lukas/.npm/_locks/strip-ansi-d7837a436f6dc0a9.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45360 verbose lock using /home/lukas/.npm/_locks/mute-stream-a7cb79b9b307ce6b.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45361 silly install write writing strip-ansi 2.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45362 silly install write writing mute-stream 0.0.4 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45363 silly gunzTarPerm extractEntry internal/createForEach.js
45364 silly gunzTarPerm modified mode [ 'internal/createForEach.js', 420, 436 ]
45365 silly gunzTarPerm extractEntry internal/baseToString.js
45366 silly gunzTarPerm modified mode [ 'internal/baseToString.js', 420, 436 ]
45367 silly gunzTarPerm extractEntry src/core/linq/observable/delaywithselector.js
45368 silly gunzTarPerm modified mode [ 'src/core/linq/observable/delaywithselector.js', 438, 436 ]
45369 silly gunzTarPerm extractEntry internal/createForEach.js
45370 silly gunzTarPerm modified mode [ 'internal/createForEach.js', 420, 436 ]
45371 silly gunzTarPerm extractEntry internal/baseToString.js
45372 silly gunzTarPerm modified mode [ 'internal/baseToString.js', 420, 436 ]
45373 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45374 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45375 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream is being purged from base /home/lukas/ffsync/fxa-auth-server
45376 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45377 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi is being purged from base /home/lukas/ffsync/fxa-auth-server
45378 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45379 verbose tar unpack /home/lukas/.npm/mute-stream/0.0.4/package.tgz
45380 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45381 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream is being purged
45382 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45383 silly gunzTarPerm extractEntry internal/createForIn.js
45384 silly gunzTarPerm modified mode [ 'internal/createForIn.js', 420, 436 ]
45385 silly gunzTarPerm extractEntry internal/baseSum.js
45386 silly gunzTarPerm modified mode [ 'internal/baseSum.js', 420, 436 ]
45387 verbose tar unpack /home/lukas/.npm/strip-ansi/2.0.1/package.tgz
45388 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45389 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi is being purged
45390 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45391 silly gunzTarPerm modes [ '775', '664' ]
45392 silly gunzTarPerm extractEntry src/core/linq/observable/startasync.js
45393 silly gunzTarPerm modified mode [ 'src/core/linq/observable/startasync.js', 438, 436 ]
45394 silly gunzTarPerm extractEntry src/core/linq/observable/delaysubscription.js
45395 silly gunzTarPerm modified mode [ 'src/core/linq/observable/delaysubscription.js', 438, 436 ]
45396 silly gunzTarPerm modes [ '775', '664' ]
45397 silly gunzTarPerm extractEntry internal/createForIn.js
45398 silly gunzTarPerm modified mode [ 'internal/createForIn.js', 420, 436 ]
45399 silly gunzTarPerm extractEntry internal/baseSum.js
45400 silly gunzTarPerm modified mode [ 'internal/baseSum.js', 420, 436 ]
45401 silly gunzTarPerm extractEntry package.json
45402 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
45403 silly gunzTarPerm extractEntry package.json
45404 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
45405 silly gunzTarPerm extractEntry README.md
45406 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
45407 silly gunzTarPerm extractEntry LICENSE
45408 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
45409 silly gunzTarPerm extractEntry src/core/linq/observable/startwith.js
45410 silly gunzTarPerm modified mode [ 'src/core/linq/observable/startwith.js', 438, 436 ]
45411 silly gunzTarPerm extractEntry src/core/linq/observable/delay.js
45412 silly gunzTarPerm modified mode [ 'src/core/linq/observable/delay.js', 438, 436 ]
45413 silly gunzTarPerm extractEntry internal/createForOwn.js
45414 silly gunzTarPerm modified mode [ 'internal/createForOwn.js', 420, 436 ]
45415 silly gunzTarPerm extractEntry internal/baseSortByOrder.js
45416 silly gunzTarPerm modified mode [ 'internal/baseSortByOrder.js', 420, 436 ]
45417 silly gunzTarPerm extractEntry index.js
45418 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
45419 silly gunzTarPerm extractEntry cli.js
45420 silly gunzTarPerm modified mode [ 'cli.js', 493, 509 ]
45421 silly gunzTarPerm extractEntry internal/createForOwn.js
45422 silly gunzTarPerm modified mode [ 'internal/createForOwn.js', 420, 436 ]
45423 silly gunzTarPerm extractEntry internal/baseSortByOrder.js
45424 silly gunzTarPerm modified mode [ 'internal/baseSortByOrder.js', 420, 436 ]
45425 silly gunzTarPerm extractEntry mute.js
45426 silly gunzTarPerm modified mode [ 'mute.js', 420, 436 ]
45427 silly gunzTarPerm extractEntry test/basic.js
45428 silly gunzTarPerm modified mode [ 'test/basic.js', 420, 436 ]
45429 silly gunzTarPerm extractEntry internal/createHybridWrapper.js
45430 silly gunzTarPerm modified mode [ 'internal/createHybridWrapper.js', 420, 436 ]
45431 silly gunzTarPerm extractEntry internal/baseSortBy.js
45432 silly gunzTarPerm modified mode [ 'internal/baseSortBy.js', 420, 436 ]
45433 silly gunzTarPerm extractEntry src/core/linq/observable/subscribeon.js
45434 silly gunzTarPerm modified mode [ 'src/core/linq/observable/subscribeon.js', 438, 436 ]
45435 silly gunzTarPerm extractEntry src/core/linq/observable/defer.js
45436 silly gunzTarPerm modified mode [ 'src/core/linq/observable/defer.js', 438, 436 ]
45437 silly gunzTarPerm extractEntry readme.md
45438 silly gunzTarPerm modified mode [ 'readme.md', 420, 436 ]
45439 silly gunzTarPerm extractEntry internal/createHybridWrapper.js
45440 silly gunzTarPerm modified mode [ 'internal/createHybridWrapper.js', 420, 436 ]
45441 silly gunzTarPerm extractEntry internal/baseSortBy.js
45442 silly gunzTarPerm modified mode [ 'internal/baseSortBy.js', 420, 436 ]
45443 silly gunzTarPerm extractEntry src/core/linq/observable/sum.js
45444 silly gunzTarPerm modified mode [ 'src/core/linq/observable/sum.js', 438, 436 ]
45445 silly gunzTarPerm extractEntry src/core/linq/observable/defaultifempty.js
45446 silly gunzTarPerm modified mode [ 'src/core/linq/observable/defaultifempty.js', 438, 436 ]
45447 silly gunzTarPerm extractEntry internal/createObjectMapper.js
45448 silly gunzTarPerm modified mode [ 'internal/createObjectMapper.js', 420, 436 ]
45449 silly gunzTarPerm extractEntry internal/baseSome.js
45450 silly gunzTarPerm modified mode [ 'internal/baseSome.js', 420, 436 ]
45451 silly gunzTarPerm extractEntry internal/createObjectMapper.js
45452 silly gunzTarPerm modified mode [ 'internal/createObjectMapper.js', 420, 436 ]
45453 silly gunzTarPerm extractEntry internal/baseSome.js
45454 silly gunzTarPerm modified mode [ 'internal/baseSome.js', 420, 436 ]
45455 silly gunzTarPerm extractEntry src/core/linq/observable/switch.js
45456 silly gunzTarPerm modified mode [ 'src/core/linq/observable/switch.js', 438, 436 ]
45457 silly gunzTarPerm extractEntry src/core/linq/observable/debouncewithselector.js
45458 silly gunzTarPerm modified mode [ 'src/core/linq/observable/debouncewithselector.js', 438, 436 ]
45459 silly gunzTarPerm extractEntry internal/createPadDir.js
45460 silly gunzTarPerm modified mode [ 'internal/createPadDir.js', 420, 436 ]
45461 silly gunzTarPerm extractEntry internal/baseSlice.js
45462 silly gunzTarPerm modified mode [ 'internal/baseSlice.js', 420, 436 ]
45463 silly gunzTarPerm extractEntry internal/createPadDir.js
45464 silly gunzTarPerm modified mode [ 'internal/createPadDir.js', 420, 436 ]
45465 silly gunzTarPerm extractEntry internal/baseSlice.js
45466 silly gunzTarPerm modified mode [ 'internal/baseSlice.js', 420, 436 ]
45467 silly gunzTarPerm extractEntry src/core/linq/observable/take.js
45468 silly gunzTarPerm modified mode [ 'src/core/linq/observable/take.js', 438, 436 ]
45469 silly gunzTarPerm extractEntry src/core/linq/observable/debounce.js
45470 silly gunzTarPerm modified mode [ 'src/core/linq/observable/debounce.js', 438, 436 ]
45471 silly gunzTarPerm extractEntry internal/createPadding.js
45472 silly gunzTarPerm modified mode [ 'internal/createPadding.js', 420, 436 ]
45473 silly gunzTarPerm extractEntry internal/baseSetData.js
45474 silly gunzTarPerm modified mode [ 'internal/baseSetData.js', 420, 436 ]
45475 silly gunzTarPerm extractEntry internal/createPadding.js
45476 silly gunzTarPerm modified mode [ 'internal/createPadding.js', 420, 436 ]
45477 silly gunzTarPerm extractEntry internal/baseSetData.js
45478 silly gunzTarPerm modified mode [ 'internal/baseSetData.js', 420, 436 ]
45479 silly gunzTarPerm extractEntry src/core/linq/observable/takelast.js
45480 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takelast.js', 438, 436 ]
45481 silly gunzTarPerm extractEntry src/core/linq/observable/create.js
45482 silly gunzTarPerm modified mode [ 'src/core/linq/observable/create.js', 438, 436 ]
45483 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi/package.json
45484 silly gunzTarPerm extractEntry internal/createPartial.js
45485 silly gunzTarPerm modified mode [ 'internal/createPartial.js', 420, 436 ]
45486 silly gunzTarPerm extractEntry internal/baseReduce.js
45487 silly gunzTarPerm modified mode [ 'internal/baseReduce.js', 420, 436 ]
45488 info preinstall strip-ansi@2.0.1
45489 silly gunzTarPerm extractEntry internal/createPartial.js
45490 silly gunzTarPerm modified mode [ 'internal/createPartial.js', 420, 436 ]
45491 silly gunzTarPerm extractEntry internal/baseReduce.js
45492 silly gunzTarPerm modified mode [ 'internal/baseReduce.js', 420, 436 ]
45493 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi/package.json
45494 verbose write writing to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream/package.json
45495 silly gunzTarPerm extractEntry src/core/linq/observable/takelastbuffer.js
45496 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takelastbuffer.js', 438, 436 ]
45497 silly gunzTarPerm extractEntry src/core/linq/observable/count.js
45498 silly gunzTarPerm modified mode [ 'src/core/linq/observable/count.js', 438, 436 ]
45499 silly gunzTarPerm extractEntry internal/createPartialWrapper.js
45500 silly gunzTarPerm modified mode [ 'internal/createPartialWrapper.js', 420, 436 ]
45501 silly gunzTarPerm extractEntry internal/baseRandom.js
45502 silly gunzTarPerm modified mode [ 'internal/baseRandom.js', 420, 436 ]
45503 info preinstall mute-stream@0.0.4
45504 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi/package.json
45505 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream/package.json
45506 silly gunzTarPerm extractEntry internal/createPartialWrapper.js
45507 silly gunzTarPerm modified mode [ 'internal/createPartialWrapper.js', 420, 436 ]
45508 silly gunzTarPerm extractEntry internal/baseRandom.js
45509 silly gunzTarPerm modified mode [ 'internal/baseRandom.js', 420, 436 ]
45510 silly gunzTarPerm extractEntry src/core/linq/observable/takelastbufferwithtime.js
45511 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takelastbufferwithtime.js',
45511 silly gunzTarPerm 438,
45511 silly gunzTarPerm 436 ]
45512 silly gunzTarPerm extractEntry src/core/linq/observable/concatproto.js
45513 silly gunzTarPerm modified mode [ 'src/core/linq/observable/concatproto.js', 438, 436 ]
45514 silly install resolved []
45515 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45516 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45517 silly gunzTarPerm extractEntry internal/createReduce.js
45518 silly gunzTarPerm modified mode [ 'internal/createReduce.js', 420, 436 ]
45519 silly gunzTarPerm extractEntry internal/basePullAt.js
45520 silly gunzTarPerm modified mode [ 'internal/basePullAt.js', 420, 436 ]
45521 verbose readDependencies loading dependencies from /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream/package.json
45522 silly gunzTarPerm extractEntry internal/createReduce.js
45523 silly gunzTarPerm modified mode [ 'internal/createReduce.js', 420, 436 ]
45524 silly gunzTarPerm extractEntry internal/basePullAt.js
45525 silly gunzTarPerm modified mode [ 'internal/basePullAt.js', 420, 436 ]
45526 info linkStuff strip-ansi@2.0.1
45527 silly linkStuff strip-ansi@2.0.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules as its parent node_modules
45528 silly install resolved []
45529 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45530 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45531 silly gunzTarPerm extractEntry src/core/linq/observable/takelastwithtime.js
45532 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takelastwithtime.js', 438, 436 ]
45533 silly gunzTarPerm extractEntry src/core/linq/observable/concatmapobserver.js
45534 silly gunzTarPerm modified mode [ 'src/core/linq/observable/concatmapobserver.js', 438, 436 ]
45535 silly gunzTarPerm extractEntry src/core/linq/observable/takeuntil.js
45536 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takeuntil.js', 438, 436 ]
45537 silly gunzTarPerm extractEntry src/core/linq/observable/concatmap.js
45538 silly gunzTarPerm modified mode [ 'src/core/linq/observable/concatmap.js', 438, 436 ]
45539 silly gunzTarPerm extractEntry internal/createRound.js
45540 silly gunzTarPerm modified mode [ 'internal/createRound.js', 420, 436 ]
45541 silly gunzTarPerm extractEntry internal/basePropertyDeep.js
45542 silly gunzTarPerm modified mode [ 'internal/basePropertyDeep.js', 420, 436 ]
45543 silly gunzTarPerm extractEntry src/core/linq/observable/takeuntilwithtime.js
45544 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takeuntilwithtime.js', 438, 436 ]
45545 info linkStuff mute-stream@0.0.4
45546 silly linkStuff mute-stream@0.0.4 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules as its parent node_modules
45547 silly gunzTarPerm extractEntry src/core/linq/observable/concatall.js
45548 silly gunzTarPerm modified mode [ 'src/core/linq/observable/concatall.js', 438, 436 ]
45549 silly gunzTarPerm extractEntry internal/createRound.js
45550 silly gunzTarPerm modified mode [ 'internal/createRound.js', 420, 436 ]
45551 silly gunzTarPerm extractEntry internal/basePropertyDeep.js
45552 silly gunzTarPerm modified mode [ 'internal/basePropertyDeep.js', 420, 436 ]
45553 silly gunzTarPerm extractEntry src/core/linq/observable/takewhile.js
45554 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takewhile.js', 438, 436 ]
45555 silly gunzTarPerm extractEntry src/core/linq/observable/concat.js
45556 silly gunzTarPerm modified mode [ 'src/core/linq/observable/concat.js', 438, 436 ]
45557 silly gunzTarPerm extractEntry internal/createSortedIndex.js
45558 silly gunzTarPerm modified mode [ 'internal/createSortedIndex.js', 420, 436 ]
45559 silly gunzTarPerm extractEntry internal/baseProperty.js
45560 silly gunzTarPerm modified mode [ 'internal/baseProperty.js', 420, 436 ]
45561 silly gunzTarPerm extractEntry src/core/linq/observable/takewithtime.js
45562 silly gunzTarPerm modified mode [ 'src/core/linq/observable/takewithtime.js', 438, 436 ]
45563 verbose linkBins strip-ansi@2.0.1
45564 verbose link bins [ { 'strip-ansi': 'cli.js' },
45564 verbose link bins '/home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/.bin',
45564 verbose link bins false ]
45565 verbose linkMans strip-ansi@2.0.1
45566 verbose rebuildBundles strip-ansi@2.0.1
45567 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/.bin/strip-ansi is being purged
45568 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/.bin/strip-ansi
45569 silly gunzTarPerm extractEntry internal/createSortedIndex.js
45570 silly gunzTarPerm modified mode [ 'internal/createSortedIndex.js', 420, 436 ]
45571 silly gunzTarPerm extractEntry internal/baseProperty.js
45572 silly gunzTarPerm modified mode [ 'internal/baseProperty.js', 420, 436 ]
45573 verbose linkBins mute-stream@0.0.4
45574 verbose linkMans mute-stream@0.0.4
45575 verbose rebuildBundles mute-stream@0.0.4
45576 info install strip-ansi@2.0.1
45577 info install mute-stream@0.0.4
45578 info postinstall strip-ansi@2.0.1
45579 silly gunzTarPerm extractEntry internal/createWrapper.js
45580 silly gunzTarPerm modified mode [ 'internal/createWrapper.js', 420, 436 ]
45581 silly gunzTarPerm extractEntry internal/baseMergeDeep.js
45582 silly gunzTarPerm modified mode [ 'internal/baseMergeDeep.js', 420, 436 ]
45583 info postinstall mute-stream@0.0.4
45584 silly gunzTarPerm extractEntry src/core/linq/observable/combinelatestproto.js
45585 silly gunzTarPerm modified mode [ 'src/core/linq/observable/combinelatestproto.js', 438, 436 ]
45586 silly gunzTarPerm extractEntry src/core/linq/observable/thendo.js
45587 silly gunzTarPerm modified mode [ 'src/core/linq/observable/thendo.js', 438, 436 ]
45588 verbose unlock done using /home/lukas/.npm/_locks/strip-ansi-d7837a436f6dc0a9.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/strip-ansi
45589 verbose unlock done using /home/lukas/.npm/_locks/mute-stream-a7cb79b9b307ce6b.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2/node_modules/mute-stream
45590 verbose about to build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
45591 info build /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
45592 silly gunzTarPerm extractEntry internal/createWrapper.js
45593 silly gunzTarPerm modified mode [ 'internal/createWrapper.js', 420, 436 ]
45594 silly gunzTarPerm extractEntry internal/baseMergeDeep.js
45595 silly gunzTarPerm modified mode [ 'internal/baseMergeDeep.js', 420, 436 ]
45596 info linkStuff readline2@0.1.1
45597 silly linkStuff readline2@0.1.1 has /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules as its parent node_modules
45598 silly gunzTarPerm extractEntry internal/deburrLetter.js
45599 silly gunzTarPerm modified mode [ 'internal/deburrLetter.js', 420, 436 ]
45600 silly gunzTarPerm extractEntry internal/baseMerge.js
45601 silly gunzTarPerm modified mode [ 'internal/baseMerge.js', 420, 436 ]
45602 silly gunzTarPerm extractEntry src/core/linq/observable/combinelatest.js
45603 silly gunzTarPerm modified mode [ 'src/core/linq/observable/combinelatest.js', 438, 436 ]
45604 silly gunzTarPerm extractEntry src/core/linq/observable/throttlefirst.js
45605 silly gunzTarPerm modified mode [ 'src/core/linq/observable/throttlefirst.js', 438, 436 ]
45606 silly gunzTarPerm extractEntry src/core/linq/observable/combinedsynchronized.js
45607 silly gunzTarPerm modified mode [ 'src/core/linq/observable/combinedsynchronized.js', 438, 436 ]
45608 silly gunzTarPerm extractEntry src/core/linq/observable/throw.js
45609 silly gunzTarPerm modified mode [ 'src/core/linq/observable/throw.js', 438, 436 ]
45610 silly gunzTarPerm extractEntry internal/deburrLetter.js
45611 silly gunzTarPerm modified mode [ 'internal/deburrLetter.js', 420, 436 ]
45612 silly gunzTarPerm extractEntry internal/baseMerge.js
45613 silly gunzTarPerm modified mode [ 'internal/baseMerge.js', 420, 436 ]
45614 silly gunzTarPerm extractEntry src/core/linq/observable/catchproto.js
45615 silly gunzTarPerm modified mode [ 'src/core/linq/observable/catchproto.js', 438, 436 ]
45616 silly gunzTarPerm extractEntry src/core/linq/observable/timeinterval.js
45617 silly gunzTarPerm modified mode [ 'src/core/linq/observable/timeinterval.js', 438, 436 ]
45618 silly gunzTarPerm extractEntry src/core/linq/observable/catch.js
45619 silly gunzTarPerm modified mode [ 'src/core/linq/observable/catch.js', 438, 436 ]
45620 silly gunzTarPerm extractEntry internal/equalArrays.js
45621 silly gunzTarPerm modified mode [ 'internal/equalArrays.js', 420, 436 ]
45622 silly gunzTarPerm extractEntry internal/baseMatchesProperty.js
45623 silly gunzTarPerm modified mode [ 'internal/baseMatchesProperty.js', 420, 436 ]
45624 silly gunzTarPerm extractEntry src/core/linq/observable/timeout.js
45625 silly gunzTarPerm modified mode [ 'src/core/linq/observable/timeout.js', 438, 436 ]
45626 verbose linkBins readline2@0.1.1
45627 verbose linkMans readline2@0.1.1
45628 verbose rebuildBundles readline2@0.1.1
45629 silly gunzTarPerm extractEntry internal/equalArrays.js
45630 silly gunzTarPerm modified mode [ 'internal/equalArrays.js', 420, 436 ]
45631 silly gunzTarPerm extractEntry internal/baseMatchesProperty.js
45632 silly gunzTarPerm modified mode [ 'internal/baseMatchesProperty.js', 420, 436 ]
45633 verbose rebuildBundles [ '.bin', 'mute-stream', 'strip-ansi' ]
45634 info install readline2@0.1.1
45635 info postinstall readline2@0.1.1
45636 silly gunzTarPerm extractEntry internal/equalByTag.js
45637 silly gunzTarPerm modified mode [ 'internal/equalByTag.js', 420, 436 ]
45638 silly gunzTarPerm extractEntry internal/baseMatches.js
45639 silly gunzTarPerm modified mode [ 'internal/baseMatches.js', 420, 436 ]
45640 verbose unlock done using /home/lukas/.npm/_locks/readline2-65eb9327b9c3348b.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/inquirer/node_modules/readline2
45641 silly gunzTarPerm extractEntry src/core/linq/observable/case.js
45642 silly gunzTarPerm modified mode [ 'src/core/linq/observable/case.js', 438, 436 ]
45643 silly gunzTarPerm extractEntry src/core/linq/observable/timeoutwithselector.js
45644 silly gunzTarPerm modified mode [ 'src/core/linq/observable/timeoutwithselector.js', 438, 436 ]
45645 silly gunzTarPerm extractEntry src/core/linq/observable/bufferwithtimeorcount.js
45646 silly gunzTarPerm modified mode [ 'src/core/linq/observable/bufferwithtimeorcount.js', 438, 436 ]
45647 silly gunzTarPerm extractEntry internal/equalByTag.js
45648 silly gunzTarPerm modified mode [ 'internal/equalByTag.js', 420, 436 ]
45649 silly gunzTarPerm extractEntry internal/baseMatches.js
45650 silly gunzTarPerm modified mode [ 'internal/baseMatches.js', 420, 436 ]
45651 silly gunzTarPerm extractEntry src/core/linq/observable/timer.js
45652 silly gunzTarPerm modified mode [ 'src/core/linq/observable/timer.js', 438, 436 ]
45653 silly gunzTarPerm extractEntry src/core/linq/observable/bufferwithtime.js
45654 silly gunzTarPerm modified mode [ 'src/core/linq/observable/bufferwithtime.js', 438, 436 ]
45655 silly gunzTarPerm extractEntry src/core/linq/observable/timestamp.js
45656 silly gunzTarPerm modified mode [ 'src/core/linq/observable/timestamp.js', 438, 436 ]
45657 silly gunzTarPerm extractEntry internal/equalObjects.js
45658 silly gunzTarPerm modified mode [ 'internal/equalObjects.js', 420, 436 ]
45659 silly gunzTarPerm extractEntry internal/baseMap.js
45660 silly gunzTarPerm modified mode [ 'internal/baseMap.js', 420, 436 ]
45661 silly gunzTarPerm extractEntry src/core/linq/observable/bufferwithcount.js
45662 silly gunzTarPerm modified mode [ 'src/core/linq/observable/bufferwithcount.js', 438, 436 ]
45663 silly gunzTarPerm extractEntry src/core/linq/observable/toarray.js
45664 silly gunzTarPerm modified mode [ 'src/core/linq/observable/toarray.js', 438, 436 ]
45665 silly gunzTarPerm extractEntry internal/equalObjects.js
45666 silly gunzTarPerm modified mode [ 'internal/equalObjects.js', 420, 436 ]
45667 silly gunzTarPerm extractEntry internal/baseMap.js
45668 silly gunzTarPerm modified mode [ 'internal/baseMap.js', 420, 436 ]
45669 silly gunzTarPerm extractEntry internal/escapeHtmlChar.js
45670 silly gunzTarPerm modified mode [ 'internal/escapeHtmlChar.js', 420, 436 ]
45671 silly gunzTarPerm extractEntry internal/baseLodash.js
45672 silly gunzTarPerm modified mode [ 'internal/baseLodash.js', 420, 436 ]
45673 silly gunzTarPerm extractEntry internal/escapeHtmlChar.js
45674 silly gunzTarPerm modified mode [ 'internal/escapeHtmlChar.js', 420, 436 ]
45675 silly gunzTarPerm extractEntry internal/baseLodash.js
45676 silly gunzTarPerm modified mode [ 'internal/baseLodash.js', 420, 436 ]
45677 silly gunzTarPerm extractEntry src/core/linq/observable/buffer.js
45678 silly gunzTarPerm modified mode [ 'src/core/linq/observable/buffer.js', 438, 436 ]
45679 silly gunzTarPerm extractEntry src/core/linq/observable/toasync.js
45680 silly gunzTarPerm modified mode [ 'src/core/linq/observable/toasync.js', 438, 436 ]
45681 silly gunzTarPerm extractEntry internal/escapeRegExpChar.js
45682 silly gunzTarPerm modified mode [ 'internal/escapeRegExpChar.js', 420, 436 ]
45683 silly gunzTarPerm extractEntry internal/baseIsMatch.js
45684 silly gunzTarPerm modified mode [ 'internal/baseIsMatch.js', 420, 436 ]
45685 silly gunzTarPerm extractEntry internal/escapeRegExpChar.js
45686 silly gunzTarPerm modified mode [ 'internal/escapeRegExpChar.js', 420, 436 ]
45687 silly gunzTarPerm extractEntry internal/baseIsMatch.js
45688 silly gunzTarPerm modified mode [ 'internal/baseIsMatch.js', 420, 436 ]
45689 silly gunzTarPerm extractEntry src/core/linq/observable/average.js
45690 silly gunzTarPerm modified mode [ 'src/core/linq/observable/average.js', 438, 436 ]
45691 silly gunzTarPerm extractEntry src/core/linq/observable/tomap.js
45692 silly gunzTarPerm modified mode [ 'src/core/linq/observable/tomap.js', 438, 436 ]
45693 silly gunzTarPerm extractEntry src/core/linq/observable/asobservable.js
45694 silly gunzTarPerm modified mode [ 'src/core/linq/observable/asobservable.js', 438, 436 ]
45695 silly gunzTarPerm extractEntry src/core/linq/observable/topromise.js
45696 silly gunzTarPerm modified mode [ 'src/core/linq/observable/topromise.js', 438, 436 ]
45697 silly gunzTarPerm extractEntry src/core/linq/observable/and.js
45698 silly gunzTarPerm modified mode [ 'src/core/linq/observable/and.js', 438, 436 ]
45699 silly gunzTarPerm extractEntry internal/escapeStringChar.js
45700 silly gunzTarPerm modified mode [ 'internal/escapeStringChar.js', 420, 436 ]
45701 silly gunzTarPerm extractEntry internal/baseIsFunction.js
45702 silly gunzTarPerm modified mode [ 'internal/baseIsFunction.js', 420, 436 ]
45703 silly gunzTarPerm extractEntry src/core/linq/observable/toset.js
45704 silly gunzTarPerm modified mode [ 'src/core/linq/observable/toset.js', 438, 436 ]
45705 silly gunzTarPerm extractEntry src/core/linq/observable/ambproto.js
45706 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ambproto.js', 438, 436 ]
45707 silly gunzTarPerm extractEntry internal/escapeStringChar.js
45708 silly gunzTarPerm modified mode [ 'internal/escapeStringChar.js', 420, 436 ]
45709 silly gunzTarPerm extractEntry internal/baseIsFunction.js
45710 silly gunzTarPerm modified mode [ 'internal/baseIsFunction.js', 420, 436 ]
45711 silly gunzTarPerm extractEntry src/core/linq/observable/transduce.js
45712 silly gunzTarPerm modified mode [ 'src/core/linq/observable/transduce.js', 438, 436 ]
45713 silly gunzTarPerm extractEntry src/core/linq/observable/amb.js
45714 silly gunzTarPerm modified mode [ 'src/core/linq/observable/amb.js', 438, 436 ]
45715 silly gunzTarPerm extractEntry internal/getData.js
45716 silly gunzTarPerm modified mode [ 'internal/getData.js', 420, 436 ]
45717 silly gunzTarPerm extractEntry internal/baseIsEqualDeep.js
45718 silly gunzTarPerm modified mode [ 'internal/baseIsEqualDeep.js', 420, 436 ]
45719 silly gunzTarPerm extractEntry internal/getData.js
45720 silly gunzTarPerm modified mode [ 'internal/getData.js', 420, 436 ]
45721 silly gunzTarPerm extractEntry internal/baseIsEqualDeep.js
45722 silly gunzTarPerm modified mode [ 'internal/baseIsEqualDeep.js', 420, 436 ]
45723 silly gunzTarPerm extractEntry src/core/linq/observable/using.js
45724 silly gunzTarPerm modified mode [ 'src/core/linq/observable/using.js', 438, 436 ]
45725 silly gunzTarPerm extractEntry src/core/linq/observable/aggregate.js
45726 silly gunzTarPerm modified mode [ 'src/core/linq/observable/aggregate.js', 438, 436 ]
45727 silly gunzTarPerm extractEntry internal/getFuncName.js
45728 silly gunzTarPerm modified mode [ 'internal/getFuncName.js', 420, 436 ]
45729 silly gunzTarPerm extractEntry internal/baseIsEqual.js
45730 silly gunzTarPerm modified mode [ 'internal/baseIsEqual.js', 420, 436 ]
45731 silly gunzTarPerm extractEntry internal/getFuncName.js
45732 silly gunzTarPerm modified mode [ 'internal/getFuncName.js', 420, 436 ]
45733 silly gunzTarPerm extractEntry internal/baseIsEqual.js
45734 silly gunzTarPerm modified mode [ 'internal/baseIsEqual.js', 420, 436 ]
45735 silly gunzTarPerm extractEntry src/core/linq/observable/when.js
45736 silly gunzTarPerm modified mode [ 'src/core/linq/observable/when.js', 438, 436 ]
45737 silly gunzTarPerm extractEntry src/core/linq/observable/_singleordefault.js
45738 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_singleordefault.js', 438, 436 ]
45739 silly gunzTarPerm extractEntry internal/getLength.js
45740 silly gunzTarPerm modified mode [ 'internal/getLength.js', 420, 436 ]
45741 silly gunzTarPerm extractEntry internal/baseIndexOf.js
45742 silly gunzTarPerm modified mode [ 'internal/baseIndexOf.js', 420, 436 ]
45743 silly gunzTarPerm extractEntry internal/getLength.js
45744 silly gunzTarPerm modified mode [ 'internal/getLength.js', 420, 436 ]
45745 silly gunzTarPerm extractEntry internal/baseIndexOf.js
45746 silly gunzTarPerm modified mode [ 'internal/baseIndexOf.js', 420, 436 ]
45747 silly gunzTarPerm extractEntry src/core/linq/observable/where.js
45748 silly gunzTarPerm modified mode [ 'src/core/linq/observable/where.js', 438, 436 ]
45749 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimertimespanandperiod.js
45750 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimertimespanandperiod.js',
45750 silly gunzTarPerm 438,
45750 silly gunzTarPerm 436 ]
45751 silly gunzTarPerm extractEntry internal/getMatchData.js
45752 silly gunzTarPerm modified mode [ 'internal/getMatchData.js', 420, 436 ]
45753 silly gunzTarPerm extractEntry internal/baseGet.js
45754 silly gunzTarPerm modified mode [ 'internal/baseGet.js', 420, 436 ]
45755 silly gunzTarPerm extractEntry internal/getMatchData.js
45756 silly gunzTarPerm modified mode [ 'internal/getMatchData.js', 420, 436 ]
45757 silly gunzTarPerm extractEntry internal/baseGet.js
45758 silly gunzTarPerm modified mode [ 'internal/baseGet.js', 420, 436 ]
45759 silly gunzTarPerm extractEntry src/core/linq/observable/while.js
45760 silly gunzTarPerm modified mode [ 'src/core/linq/observable/while.js', 438, 436 ]
45761 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimertimespan.js
45762 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimertimespan.js',
45762 silly gunzTarPerm 438,
45762 silly gunzTarPerm 436 ]
45763 silly gunzTarPerm extractEntry internal/getNative.js
45764 silly gunzTarPerm modified mode [ 'internal/getNative.js', 420, 436 ]
45765 silly gunzTarPerm extractEntry internal/baseFunctions.js
45766 silly gunzTarPerm modified mode [ 'internal/baseFunctions.js', 420, 436 ]
45767 silly gunzTarPerm extractEntry internal/getNative.js
45768 silly gunzTarPerm modified mode [ 'internal/getNative.js', 420, 436 ]
45769 silly gunzTarPerm extractEntry internal/baseFunctions.js
45770 silly gunzTarPerm modified mode [ 'internal/baseFunctions.js', 420, 436 ]
45771 silly gunzTarPerm extractEntry src/core/linq/observable/window.js
45772 silly gunzTarPerm modified mode [ 'src/core/linq/observable/window.js', 438, 436 ]
45773 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimerdateandperiod.js
45774 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimerdateandperiod.js',
45774 silly gunzTarPerm 438,
45774 silly gunzTarPerm 436 ]
45775 silly gunzTarPerm extractEntry internal/getView.js
45776 silly gunzTarPerm modified mode [ 'internal/getView.js', 420, 436 ]
45777 silly gunzTarPerm extractEntry internal/baseForRight.js
45778 silly gunzTarPerm modified mode [ 'internal/baseForRight.js', 420, 436 ]
45779 silly gunzTarPerm extractEntry internal/getView.js
45780 silly gunzTarPerm modified mode [ 'internal/getView.js', 420, 436 ]
45781 silly gunzTarPerm extractEntry internal/baseForRight.js
45782 silly gunzTarPerm modified mode [ 'internal/baseForRight.js', 420, 436 ]
45783 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithcount.js
45784 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithcount.js', 438, 436 ]
45785 silly gunzTarPerm extractEntry src/core/linq/observable/_observabletimerdate.js
45786 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_observabletimerdate.js', 438, 436 ]
45787 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithtime.js
45788 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithtime.js', 438, 436 ]
45789 silly gunzTarPerm extractEntry internal/indexOfNaN.js
45790 silly gunzTarPerm modified mode [ 'internal/indexOfNaN.js', 420, 436 ]
45791 silly gunzTarPerm extractEntry internal/baseForOwnRight.js
45792 silly gunzTarPerm modified mode [ 'internal/baseForOwnRight.js', 420, 436 ]
45793 silly gunzTarPerm extractEntry src/core/linq/observable/_lastordefault.js
45794 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_lastordefault.js', 438, 436 ]
45795 silly gunzTarPerm extractEntry internal/indexOfNaN.js
45796 silly gunzTarPerm modified mode [ 'internal/indexOfNaN.js', 420, 436 ]
45797 silly gunzTarPerm extractEntry internal/baseForOwnRight.js
45798 silly gunzTarPerm modified mode [ 'internal/baseForOwnRight.js', 420, 436 ]
45799 silly gunzTarPerm extractEntry internal/initCloneArray.js
45800 silly gunzTarPerm modified mode [ 'internal/initCloneArray.js', 420, 436 ]
45801 silly gunzTarPerm extractEntry internal/baseForOwn.js
45802 silly gunzTarPerm modified mode [ 'internal/baseForOwn.js', 420, 436 ]
45803 silly gunzTarPerm extractEntry src/core/linq/observable/windowwithtimeorcount.js
45804 silly gunzTarPerm modified mode [ 'src/core/linq/observable/windowwithtimeorcount.js', 438, 436 ]
45805 silly gunzTarPerm extractEntry src/core/linq/observable/_firstordefault.js
45806 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_firstordefault.js', 438, 436 ]
45807 silly gunzTarPerm extractEntry src/core/linq/observable/withlatestfrom.js
45808 silly gunzTarPerm modified mode [ 'src/core/linq/observable/withlatestfrom.js', 438, 436 ]
45809 silly gunzTarPerm extractEntry src/core/linq/observable/_firstonly.js
45810 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_firstonly.js', 438, 436 ]
45811 silly gunzTarPerm extractEntry internal/initCloneArray.js
45812 silly gunzTarPerm modified mode [ 'internal/initCloneArray.js', 420, 436 ]
45813 silly gunzTarPerm extractEntry internal/baseForOwn.js
45814 silly gunzTarPerm modified mode [ 'internal/baseForOwn.js', 420, 436 ]
45815 silly gunzTarPerm extractEntry src/core/linq/observable/zip.js
45816 silly gunzTarPerm modified mode [ 'src/core/linq/observable/zip.js', 438, 436 ]
45817 silly gunzTarPerm extractEntry src/core/linq/observable/_findvalue.js
45818 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_findvalue.js', 438, 436 ]
45819 silly gunzTarPerm extractEntry internal/initCloneByTag.js
45820 silly gunzTarPerm modified mode [ 'internal/initCloneByTag.js', 420, 436 ]
45821 silly gunzTarPerm extractEntry internal/baseForIn.js
45822 silly gunzTarPerm modified mode [ 'internal/baseForIn.js', 420, 436 ]
45823 silly gunzTarPerm extractEntry src/core/linq/observable/ziparray.js
45824 silly gunzTarPerm modified mode [ 'src/core/linq/observable/ziparray.js', 438, 436 ]
45825 silly gunzTarPerm extractEntry src/core/linq/observable/_extremaby.js
45826 silly gunzTarPerm modified mode [ 'src/core/linq/observable/_extremaby.js', 438, 436 ]
45827 silly gunzTarPerm extractEntry src/core/linq/observable/zipproto.js
45828 silly gunzTarPerm modified mode [ 'src/core/linq/observable/zipproto.js', 438, 436 ]
45829 silly gunzTarPerm extractEntry internal/initCloneByTag.js
45830 silly gunzTarPerm modified mode [ 'internal/initCloneByTag.js', 420, 436 ]
45831 silly gunzTarPerm extractEntry internal/baseForIn.js
45832 silly gunzTarPerm modified mode [ 'internal/baseForIn.js', 420, 436 ]
45833 silly gunzTarPerm extractEntry src/core/linq/observable/merge.js
45834 silly gunzTarPerm modified mode [ 'src/core/linq/observable/merge.js', 438, 436 ]
45835 silly gunzTarPerm extractEntry internal/initCloneObject.js
45836 silly gunzTarPerm modified mode [ 'internal/initCloneObject.js', 420, 436 ]
45837 silly gunzTarPerm extractEntry internal/baseFor.js
45838 silly gunzTarPerm modified mode [ 'internal/baseFor.js', 420, 436 ]
45839 silly gunzTarPerm extractEntry src/core/longstacktraces/longstackbegin.js
45840 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstackbegin.js', 438, 436 ]
45841 silly gunzTarPerm extractEntry src/core/longstacktraces/longstackend.js
45842 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstackend.js', 438, 436 ]
45843 silly gunzTarPerm extractEntry src/core/longstacktraces/longstacktraces.js
45844 silly gunzTarPerm modified mode [ 'src/core/longstacktraces/longstacktraces.js', 438, 436 ]
45845 silly gunzTarPerm extractEntry internal/initCloneObject.js
45846 silly gunzTarPerm modified mode [ 'internal/initCloneObject.js', 420, 436 ]
45847 silly gunzTarPerm extractEntry internal/baseFor.js
45848 silly gunzTarPerm modified mode [ 'internal/baseFor.js', 420, 436 ]
45849 silly gunzTarPerm extractEntry internal/invokePath.js
45850 silly gunzTarPerm modified mode [ 'internal/invokePath.js', 420, 436 ]
45851 silly gunzTarPerm extractEntry internal/baseFlatten.js
45852 silly gunzTarPerm modified mode [ 'internal/baseFlatten.js', 420, 436 ]
45853 silly gunzTarPerm extractEntry src/core/concurrency/catchscheduler.js
45854 silly gunzTarPerm modified mode [ 'src/core/concurrency/catchscheduler.js', 438, 436 ]
45855 silly gunzTarPerm extractEntry src/core/concurrency/defaultscheduler.js
45856 silly gunzTarPerm modified mode [ 'src/core/concurrency/defaultscheduler.js', 438, 436 ]
45857 silly gunzTarPerm extractEntry src/core/concurrency/historicalscheduler.js
45858 silly gunzTarPerm modified mode [ 'src/core/concurrency/historicalscheduler.js', 438, 436 ]
45859 silly gunzTarPerm extractEntry internal/invokePath.js
45860 silly gunzTarPerm modified mode [ 'internal/invokePath.js', 420, 436 ]
45861 silly gunzTarPerm extractEntry internal/baseFlatten.js
45862 silly gunzTarPerm modified mode [ 'internal/baseFlatten.js', 420, 436 ]
45863 silly gunzTarPerm extractEntry src/core/concurrency/immediatescheduler.js
45864 silly gunzTarPerm modified mode [ 'src/core/concurrency/immediatescheduler.js', 438, 436 ]
45865 silly gunzTarPerm extractEntry src/core/concurrency/scheduleditem.js
45866 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduleditem.js', 438, 436 ]
45867 silly gunzTarPerm extractEntry internal/isArrayLike.js
45868 silly gunzTarPerm modified mode [ 'internal/isArrayLike.js', 420, 436 ]
45869 silly gunzTarPerm extractEntry src/core/concurrency/currentthreadscheduler.js
45870 silly gunzTarPerm modified mode [ 'src/core/concurrency/currentthreadscheduler.js', 438, 436 ]
45871 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.js
45872 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.js', 438, 436 ]
45873 silly gunzTarPerm extractEntry internal/isArrayLike.js
45874 silly gunzTarPerm modified mode [ 'internal/isArrayLike.js', 420, 436 ]
45875 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.periodic.js
45876 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.periodic.js', 438, 436 ]
45877 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.recursive.js
45878 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.recursive.js', 438, 436 ]
45879 silly gunzTarPerm extractEntry internal/baseFindIndex.js
45880 silly gunzTarPerm modified mode [ 'internal/baseFindIndex.js', 420, 436 ]
45881 silly gunzTarPerm extractEntry internal/isIndex.js
45882 silly gunzTarPerm modified mode [ 'internal/isIndex.js', 420, 436 ]
45883 silly gunzTarPerm extractEntry src/core/concurrency/scheduler.wrappers.js
45884 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduler.wrappers.js', 438, 436 ]
45885 silly gunzTarPerm extractEntry src/core/concurrency/virtualtimescheduler.js
45886 silly gunzTarPerm modified mode [ 'src/core/concurrency/virtualtimescheduler.js', 438, 436 ]
45887 silly gunzTarPerm extractEntry src/core/concurrency/scheduleperiodicrecursive.js
45888 silly gunzTarPerm modified mode [ 'src/core/concurrency/scheduleperiodicrecursive.js', 438, 436 ]
45889 silly gunzTarPerm extractEntry internal/baseFindIndex.js
45890 silly gunzTarPerm modified mode [ 'internal/baseFindIndex.js', 420, 436 ]
45891 silly gunzTarPerm extractEntry internal/isIndex.js
45892 silly gunzTarPerm modified mode [ 'internal/isIndex.js', 420, 436 ]
45893 silly gunzTarPerm extractEntry internal/baseFind.js
45894 silly gunzTarPerm modified mode [ 'internal/baseFind.js', 420, 436 ]
45895 silly gunzTarPerm extractEntry internal/isIterateeCall.js
45896 silly gunzTarPerm modified mode [ 'internal/isIterateeCall.js', 420, 436 ]
45897 silly gunzTarPerm extractEntry src/core/disposables/booleandisposable.js
45898 silly gunzTarPerm modified mode [ 'src/core/disposables/booleandisposable.js', 438, 436 ]
45899 silly gunzTarPerm extractEntry src/core/disposables/compositedisposable.js
45900 silly gunzTarPerm modified mode [ 'src/core/disposables/compositedisposable.js', 438, 436 ]
45901 silly gunzTarPerm extractEntry internal/baseFind.js
45902 silly gunzTarPerm modified mode [ 'internal/baseFind.js', 420, 436 ]
45903 silly gunzTarPerm extractEntry internal/isIterateeCall.js
45904 silly gunzTarPerm modified mode [ 'internal/isIterateeCall.js', 420, 436 ]
45905 silly gunzTarPerm extractEntry internal/baseFilter.js
45906 silly gunzTarPerm modified mode [ 'internal/baseFilter.js', 420, 436 ]
45907 silly gunzTarPerm extractEntry internal/isKey.js
45908 silly gunzTarPerm modified mode [ 'internal/isKey.js', 420, 436 ]
45909 silly gunzTarPerm extractEntry src/core/disposables/disposable.js
45910 silly gunzTarPerm modified mode [ 'src/core/disposables/disposable.js', 438, 436 ]
45911 silly gunzTarPerm extractEntry src/core/disposables/refcountdisposable.js
45912 silly gunzTarPerm modified mode [ 'src/core/disposables/refcountdisposable.js', 438, 436 ]
45913 silly gunzTarPerm extractEntry internal/baseFilter.js
45914 silly gunzTarPerm modified mode [ 'internal/baseFilter.js', 420, 436 ]
45915 silly gunzTarPerm extractEntry internal/isKey.js
45916 silly gunzTarPerm modified mode [ 'internal/isKey.js', 420, 436 ]
45917 silly gunzTarPerm extractEntry internal/baseFill.js
45918 silly gunzTarPerm modified mode [ 'internal/baseFill.js', 420, 436 ]
45919 silly gunzTarPerm extractEntry internal/isLaziable.js
45920 silly gunzTarPerm modified mode [ 'internal/isLaziable.js', 420, 436 ]
45921 silly gunzTarPerm extractEntry src/core/disposables/scheduleddisposable.js
45922 silly gunzTarPerm modified mode [ 'src/core/disposables/scheduleddisposable.js', 438, 436 ]
45923 silly gunzTarPerm extractEntry src/core/backpressure/controlled.js
45924 silly gunzTarPerm modified mode [ 'src/core/backpressure/controlled.js', 438, 436 ]
45925 silly gunzTarPerm extractEntry internal/baseFill.js
45926 silly gunzTarPerm modified mode [ 'internal/baseFill.js', 420, 436 ]
45927 silly gunzTarPerm extractEntry internal/isLaziable.js
45928 silly gunzTarPerm modified mode [ 'internal/isLaziable.js', 420, 436 ]
45929 silly gunzTarPerm extractEntry internal/baseExtremum.js
45930 silly gunzTarPerm modified mode [ 'internal/baseExtremum.js', 420, 436 ]
45931 silly gunzTarPerm extractEntry internal/isLength.js
45932 silly gunzTarPerm modified mode [ 'internal/isLength.js', 420, 436 ]
45933 silly gunzTarPerm extractEntry src/core/backpressure/pausable.js
45934 silly gunzTarPerm modified mode [ 'src/core/backpressure/pausable.js', 438, 436 ]
45935 silly gunzTarPerm extractEntry src/core/backpressure/pausablebuffered.js
45936 silly gunzTarPerm modified mode [ 'src/core/backpressure/pausablebuffered.js', 438, 436 ]
45937 silly gunzTarPerm extractEntry internal/baseExtremum.js
45938 silly gunzTarPerm modified mode [ 'internal/baseExtremum.js', 420, 436 ]
45939 silly gunzTarPerm extractEntry internal/isLength.js
45940 silly gunzTarPerm modified mode [ 'internal/isLength.js', 420, 436 ]
45941 silly gunzTarPerm extractEntry internal/baseEvery.js
45942 silly gunzTarPerm modified mode [ 'internal/baseEvery.js', 420, 436 ]
45943 silly gunzTarPerm extractEntry internal/isObjectLike.js
45944 silly gunzTarPerm modified mode [ 'internal/isObjectLike.js', 420, 436 ]
45945 silly gunzTarPerm extractEntry src/core/backpressure/pauser.js
45946 silly gunzTarPerm modified mode [ 'src/core/backpressure/pauser.js', 438, 436 ]
45947 silly gunzTarPerm extractEntry src/core/backpressure/stopandwait.js
45948 silly gunzTarPerm modified mode [ 'src/core/backpressure/stopandwait.js', 438, 436 ]
45949 silly gunzTarPerm extractEntry internal/baseEvery.js
45950 silly gunzTarPerm modified mode [ 'internal/baseEvery.js', 420, 436 ]
45951 silly gunzTarPerm extractEntry internal/isObjectLike.js
45952 silly gunzTarPerm modified mode [ 'internal/isObjectLike.js', 420, 436 ]
45953 silly gunzTarPerm extractEntry internal/baseEachRight.js
45954 silly gunzTarPerm modified mode [ 'internal/baseEachRight.js', 420, 436 ]
45955 silly gunzTarPerm extractEntry internal/isSpace.js
45956 silly gunzTarPerm modified mode [ 'internal/isSpace.js', 420, 436 ]
45957 silly gunzTarPerm extractEntry src/core/backpressure/windowed.js
45958 silly gunzTarPerm modified mode [ 'src/core/backpressure/windowed.js', 438, 436 ]
45959 silly gunzTarPerm extractEntry src/core/expressions/compiler.ts
45960 silly gunzTarPerm modified mode [ 'src/core/expressions/compiler.ts', 438, 436 ]
45961 silly gunzTarPerm extractEntry internal/baseEachRight.js
45962 silly gunzTarPerm modified mode [ 'internal/baseEachRight.js', 420, 436 ]
45963 silly gunzTarPerm extractEntry internal/isSpace.js
45964 silly gunzTarPerm modified mode [ 'internal/isSpace.js', 420, 436 ]
45965 silly gunzTarPerm extractEntry internal/baseEach.js
45966 silly gunzTarPerm modified mode [ 'internal/baseEach.js', 420, 436 ]
45967 silly gunzTarPerm extractEntry internal/isStrictComparable.js
45968 silly gunzTarPerm modified mode [ 'internal/isStrictComparable.js', 420, 436 ]
45969 silly gunzTarPerm extractEntry src/core/headers/aggregatesheader.js
45970 silly gunzTarPerm modified mode [ 'src/core/headers/aggregatesheader.js', 438, 436 ]
45971 silly gunzTarPerm extractEntry src/core/headers/intro.js
45972 silly gunzTarPerm modified mode [ 'src/core/headers/intro.js', 438, 436 ]
45973 silly gunzTarPerm extractEntry internal/baseEach.js
45974 silly gunzTarPerm modified mode [ 'internal/baseEach.js', 420, 436 ]
45975 silly gunzTarPerm extractEntry internal/isStrictComparable.js
45976 silly gunzTarPerm modified mode [ 'internal/isStrictComparable.js', 420, 436 ]
45977 silly gunzTarPerm extractEntry internal/baseDifference.js
45978 silly gunzTarPerm modified mode [ 'internal/baseDifference.js', 420, 436 ]
45979 silly gunzTarPerm extractEntry internal/lazyClone.js
45980 silly gunzTarPerm modified mode [ 'internal/lazyClone.js', 420, 436 ]
45981 silly gunzTarPerm extractEntry src/core/headers/joinpatternsheader.js
45982 silly gunzTarPerm modified mode [ 'src/core/headers/joinpatternsheader.js', 438, 436 ]
45983 silly gunzTarPerm extractEntry src/core/headers/license.js
45984 silly gunzTarPerm modified mode [ 'src/core/headers/license.js', 438, 436 ]
45985 silly gunzTarPerm extractEntry internal/baseDifference.js
45986 silly gunzTarPerm modified mode [ 'internal/baseDifference.js', 420, 436 ]
45987 silly gunzTarPerm extractEntry internal/lazyClone.js
45988 silly gunzTarPerm modified mode [ 'internal/lazyClone.js', 420, 436 ]
45989 silly gunzTarPerm extractEntry internal/baseDelay.js
45990 silly gunzTarPerm modified mode [ 'internal/baseDelay.js', 420, 436 ]
45991 silly gunzTarPerm extractEntry internal/lazyReverse.js
45992 silly gunzTarPerm modified mode [ 'internal/lazyReverse.js', 420, 436 ]
45993 silly gunzTarPerm extractEntry src/core/headers/exports.js
45994 silly gunzTarPerm modified mode [ 'src/core/headers/exports.js', 438, 436 ]
45995 silly gunzTarPerm extractEntry src/core/headers/liteheader-compat.js
45996 silly gunzTarPerm modified mode [ 'src/core/headers/liteheader-compat.js', 438, 436 ]
45997 silly gunzTarPerm extractEntry internal/baseDelay.js
45998 silly gunzTarPerm modified mode [ 'internal/baseDelay.js', 420, 436 ]
45999 silly gunzTarPerm extractEntry internal/lazyReverse.js
46000 silly gunzTarPerm modified mode [ 'internal/lazyReverse.js', 420, 436 ]
46001 silly gunzTarPerm extractEntry internal/baseCreate.js
46002 silly gunzTarPerm modified mode [ 'internal/baseCreate.js', 420, 436 ]
46003 silly gunzTarPerm extractEntry internal/lazyValue.js
46004 silly gunzTarPerm modified mode [ 'internal/lazyValue.js', 420, 436 ]
46005 silly gunzTarPerm extractEntry internal/baseCopy.js
46006 silly gunzTarPerm modified mode [ 'internal/baseCopy.js', 420, 436 ]
46007 silly gunzTarPerm extractEntry internal/mapDelete.js
46008 silly gunzTarPerm modified mode [ 'internal/mapDelete.js', 420, 436 ]
46009 silly gunzTarPerm extractEntry internal/baseCompareAscending.js
46010 silly gunzTarPerm modified mode [ 'internal/baseCompareAscending.js', 420, 436 ]
46011 silly gunzTarPerm extractEntry internal/mapGet.js
46012 silly gunzTarPerm modified mode [ 'internal/mapGet.js', 420, 436 ]
46013 silly gunzTarPerm extractEntry internal/baseClone.js
46014 silly gunzTarPerm modified mode [ 'internal/baseClone.js', 420, 436 ]
46015 silly gunzTarPerm extractEntry internal/mapHas.js
46016 silly gunzTarPerm modified mode [ 'internal/mapHas.js', 420, 436 ]
46017 silly gunzTarPerm extractEntry internal/baseCallback.js
46018 silly gunzTarPerm modified mode [ 'internal/baseCallback.js', 420, 436 ]
46019 silly gunzTarPerm extractEntry internal/mapSet.js
46020 silly gunzTarPerm modified mode [ 'internal/mapSet.js', 420, 436 ]
46021 silly gunzTarPerm extractEntry internal/baseAt.js
46022 silly gunzTarPerm modified mode [ 'internal/baseAt.js', 420, 436 ]
46023 silly gunzTarPerm extractEntry internal/mergeData.js
46024 silly gunzTarPerm modified mode [ 'internal/mergeData.js', 420, 436 ]
46025 silly gunzTarPerm extractEntry internal/baseAssign.js
46026 silly gunzTarPerm modified mode [ 'internal/baseAssign.js', 420, 436 ]
46027 silly gunzTarPerm extractEntry internal/mergeDefaults.js
46028 silly gunzTarPerm modified mode [ 'internal/mergeDefaults.js', 420, 436 ]
46029 silly gunzTarPerm extractEntry internal/assignWith.js
46030 silly gunzTarPerm modified mode [ 'internal/assignWith.js', 420, 436 ]
46031 silly gunzTarPerm extractEntry internal/metaMap.js
46032 silly gunzTarPerm modified mode [ 'internal/metaMap.js', 420, 436 ]
46033 silly gunzTarPerm extractEntry internal/assignOwnDefaults.js
46034 silly gunzTarPerm modified mode [ 'internal/assignOwnDefaults.js', 420, 436 ]
46035 silly gunzTarPerm extractEntry internal/pickByArray.js
46036 silly gunzTarPerm modified mode [ 'internal/pickByArray.js', 420, 436 ]
46037 silly gunzTarPerm extractEntry internal/assignDefaults.js
46038 silly gunzTarPerm modified mode [ 'internal/assignDefaults.js', 420, 436 ]
46039 silly gunzTarPerm extractEntry internal/pickByCallback.js
46040 silly gunzTarPerm modified mode [ 'internal/pickByCallback.js', 420, 436 ]
46041 silly gunzTarPerm extractEntry internal/arraySum.js
46042 silly gunzTarPerm modified mode [ 'internal/arraySum.js', 420, 436 ]
46043 silly gunzTarPerm extractEntry internal/reEscape.js
46044 silly gunzTarPerm modified mode [ 'internal/reEscape.js', 420, 436 ]
46045 silly gunzTarPerm extractEntry internal/arraySome.js
46046 silly gunzTarPerm modified mode [ 'internal/arraySome.js', 420, 436 ]
46047 silly gunzTarPerm extractEntry internal/reEvaluate.js
46048 silly gunzTarPerm modified mode [ 'internal/reEvaluate.js', 420, 436 ]
46049 silly gunzTarPerm extractEntry internal/arrayReduceRight.js
46050 silly gunzTarPerm modified mode [ 'internal/arrayReduceRight.js', 420, 436 ]
46051 silly gunzTarPerm extractEntry internal/reInterpolate.js
46052 silly gunzTarPerm modified mode [ 'internal/reInterpolate.js', 420, 436 ]
46053 silly gunzTarPerm extractEntry internal/arrayReduce.js
46054 silly gunzTarPerm modified mode [ 'internal/arrayReduce.js', 420, 436 ]
46055 silly gunzTarPerm extractEntry internal/realNames.js
46056 silly gunzTarPerm modified mode [ 'internal/realNames.js', 420, 436 ]
46057 silly gunzTarPerm extractEntry internal/arrayPush.js
46058 silly gunzTarPerm modified mode [ 'internal/arrayPush.js', 420, 436 ]
46059 silly gunzTarPerm extractEntry internal/reorder.js
46060 silly gunzTarPerm modified mode [ 'internal/reorder.js', 420, 436 ]
46061 silly gunzTarPerm extractEntry internal/arrayMap.js
46062 silly gunzTarPerm modified mode [ 'internal/arrayMap.js', 420, 436 ]
46063 silly gunzTarPerm extractEntry internal/replaceHolders.js
46064 silly gunzTarPerm modified mode [ 'internal/replaceHolders.js', 420, 436 ]
46065 silly gunzTarPerm extractEntry internal/arrayFilter.js
46066 silly gunzTarPerm modified mode [ 'internal/arrayFilter.js', 420, 436 ]
46067 silly gunzTarPerm extractEntry internal/setData.js
46068 silly gunzTarPerm modified mode [ 'internal/setData.js', 420, 436 ]
46069 silly gunzTarPerm extractEntry internal/arrayExtremum.js
46070 silly gunzTarPerm modified mode [ 'internal/arrayExtremum.js', 420, 436 ]
46071 silly gunzTarPerm extractEntry internal/shimKeys.js
46072 silly gunzTarPerm modified mode [ 'internal/shimKeys.js', 420, 436 ]
46073 silly gunzTarPerm extractEntry internal/arrayEvery.js
46074 silly gunzTarPerm modified mode [ 'internal/arrayEvery.js', 420, 436 ]
46075 silly gunzTarPerm extractEntry internal/sortedUniq.js
46076 silly gunzTarPerm modified mode [ 'internal/sortedUniq.js', 420, 436 ]
46077 silly gunzTarPerm extractEntry internal/arrayEachRight.js
46078 silly gunzTarPerm modified mode [ 'internal/arrayEachRight.js', 420, 436 ]
46079 silly gunzTarPerm extractEntry internal/toIterable.js
46080 silly gunzTarPerm modified mode [ 'internal/toIterable.js', 420, 436 ]
46081 silly gunzTarPerm extractEntry internal/arrayEach.js
46082 silly gunzTarPerm modified mode [ 'internal/arrayEach.js', 420, 436 ]
46083 silly gunzTarPerm extractEntry internal/toObject.js
46084 silly gunzTarPerm modified mode [ 'internal/toObject.js', 420, 436 ]
46085 silly gunzTarPerm extractEntry internal/arrayCopy.js
46086 silly gunzTarPerm modified mode [ 'internal/arrayCopy.js', 420, 436 ]
46087 silly gunzTarPerm extractEntry internal/toPath.js
46088 silly gunzTarPerm modified mode [ 'internal/toPath.js', 420, 436 ]
46089 silly gunzTarPerm extractEntry internal/arrayConcat.js
46090 silly gunzTarPerm modified mode [ 'internal/arrayConcat.js', 420, 436 ]
46091 silly gunzTarPerm extractEntry internal/trimmedLeftIndex.js
46092 silly gunzTarPerm modified mode [ 'internal/trimmedLeftIndex.js', 420, 436 ]
46093 silly gunzTarPerm extractEntry internal/SetCache.js
46094 silly gunzTarPerm modified mode [ 'internal/SetCache.js', 420, 436 ]
46095 silly gunzTarPerm extractEntry internal/trimmedRightIndex.js
46096 silly gunzTarPerm modified mode [ 'internal/trimmedRightIndex.js', 420, 436 ]
46097 silly gunzTarPerm extractEntry internal/MapCache.js
46098 silly gunzTarPerm modified mode [ 'internal/MapCache.js', 420, 436 ]
46099 silly gunzTarPerm extractEntry internal/unescapeHtmlChar.js
46100 silly gunzTarPerm modified mode [ 'internal/unescapeHtmlChar.js', 420, 436 ]
46101 silly gunzTarPerm extractEntry internal/LodashWrapper.js
46102 silly gunzTarPerm modified mode [ 'internal/LodashWrapper.js', 420, 436 ]
46103 silly gunzTarPerm extractEntry internal/wrapperClone.js
46104 silly gunzTarPerm modified mode [ 'internal/wrapperClone.js', 420, 436 ]
46105 silly gunzTarPerm extractEntry internal/composeArgsRight.js
46106 silly gunzTarPerm modified mode [ 'internal/composeArgsRight.js', 420, 436 ]
46107 silly gunzTarPerm extractEntry string/camelCase.js
46108 silly gunzTarPerm modified mode [ 'string/camelCase.js', 420, 436 ]
46109 silly gunzTarPerm extractEntry string/padLeft.js
46110 silly gunzTarPerm modified mode [ 'string/padLeft.js', 420, 436 ]
46111 silly gunzTarPerm extractEntry string/padRight.js
46112 silly gunzTarPerm modified mode [ 'string/padRight.js', 420, 436 ]
46113 silly gunzTarPerm extractEntry string/parseInt.js
46114 silly gunzTarPerm modified mode [ 'string/parseInt.js', 420, 436 ]
46115 silly gunzTarPerm extractEntry string/pad.js
46116 silly gunzTarPerm modified mode [ 'string/pad.js', 420, 436 ]
46117 silly gunzTarPerm extractEntry string/snakeCase.js
46118 silly gunzTarPerm modified mode [ 'string/snakeCase.js', 420, 436 ]
46119 silly gunzTarPerm extractEntry string/startCase.js
46120 silly gunzTarPerm modified mode [ 'string/startCase.js', 420, 436 ]
46121 silly gunzTarPerm extractEntry string/startsWith.js
46122 silly gunzTarPerm modified mode [ 'string/startsWith.js', 420, 436 ]
46123 silly gunzTarPerm extractEntry string/template.js
46124 silly gunzTarPerm modified mode [ 'string/template.js', 420, 436 ]
46125 silly gunzTarPerm extractEntry string/templateSettings.js
46126 silly gunzTarPerm modified mode [ 'string/templateSettings.js', 420, 436 ]
46127 silly gunzTarPerm extractEntry string/kebabCase.js
46128 silly gunzTarPerm modified mode [ 'string/kebabCase.js', 420, 436 ]
46129 silly gunzTarPerm extractEntry string/trim.js
46130 silly gunzTarPerm modified mode [ 'string/trim.js', 420, 436 ]
46131 silly gunzTarPerm extractEntry string/escapeRegExp.js
46132 silly gunzTarPerm modified mode [ 'string/escapeRegExp.js', 420, 436 ]
46133 silly gunzTarPerm extractEntry string/trimLeft.js
46134 silly gunzTarPerm modified mode [ 'string/trimLeft.js', 420, 436 ]
46135 silly gunzTarPerm extractEntry string/escape.js
46136 silly gunzTarPerm modified mode [ 'string/escape.js', 420, 436 ]
46137 silly gunzTarPerm extractEntry string/trimRight.js
46138 silly gunzTarPerm modified mode [ 'string/trimRight.js', 420, 436 ]
46139 silly gunzTarPerm extractEntry string/endsWith.js
46140 silly gunzTarPerm modified mode [ 'string/endsWith.js', 420, 436 ]
46141 silly gunzTarPerm extractEntry string/trunc.js
46142 silly gunzTarPerm modified mode [ 'string/trunc.js', 420, 436 ]
46143 silly gunzTarPerm extractEntry string/deburr.js
46144 silly gunzTarPerm modified mode [ 'string/deburr.js', 420, 436 ]
46145 silly gunzTarPerm extractEntry string/unescape.js
46146 silly gunzTarPerm modified mode [ 'string/unescape.js', 420, 436 ]
46147 silly gunzTarPerm extractEntry string/capitalize.js
46148 silly gunzTarPerm modified mode [ 'string/capitalize.js', 420, 436 ]
46149 silly gunzTarPerm extractEntry string/words.js
46150 silly gunzTarPerm modified mode [ 'string/words.js', 420, 436 ]
46151 silly gunzTarPerm extractEntry string/repeat.js
46152 silly gunzTarPerm modified mode [ 'string/repeat.js', 420, 436 ]
46153 silly gunzTarPerm extractEntry chain/chain.js
46154 silly gunzTarPerm modified mode [ 'chain/chain.js', 420, 436 ]
46155 silly gunzTarPerm extractEntry chain/run.js
46156 silly gunzTarPerm modified mode [ 'chain/run.js', 420, 436 ]
46157 silly gunzTarPerm extractEntry chain/tap.js
46158 silly gunzTarPerm modified mode [ 'chain/tap.js', 420, 436 ]
46159 silly gunzTarPerm extractEntry chain/thru.js
46160 silly gunzTarPerm modified mode [ 'chain/thru.js', 420, 436 ]
46161 silly gunzTarPerm extractEntry chain/toJSON.js
46162 silly gunzTarPerm modified mode [ 'chain/toJSON.js', 420, 436 ]
46163 silly gunzTarPerm extractEntry chain/reverse.js
46164 silly gunzTarPerm modified mode [ 'chain/reverse.js', 420, 436 ]
46165 silly gunzTarPerm extractEntry chain/value.js
46166 silly gunzTarPerm modified mode [ 'chain/value.js', 420, 436 ]
46167 silly gunzTarPerm extractEntry chain/valueOf.js
46168 silly gunzTarPerm modified mode [ 'chain/valueOf.js', 420, 436 ]
46169 silly gunzTarPerm extractEntry chain/wrapperChain.js
46170 silly gunzTarPerm modified mode [ 'chain/wrapperChain.js', 420, 436 ]
46171 silly gunzTarPerm extractEntry chain/wrapperCommit.js
46172 silly gunzTarPerm modified mode [ 'chain/wrapperCommit.js', 420, 436 ]
46173 silly gunzTarPerm extractEntry chain/wrapperConcat.js
46174 silly gunzTarPerm modified mode [ 'chain/wrapperConcat.js', 420, 436 ]
46175 silly gunzTarPerm extractEntry chain/plant.js
46176 silly gunzTarPerm modified mode [ 'chain/plant.js', 420, 436 ]
46177 silly gunzTarPerm extractEntry chain/wrapperPlant.js
46178 silly gunzTarPerm modified mode [ 'chain/wrapperPlant.js', 420, 436 ]
46179 silly gunzTarPerm extractEntry chain/lodash.js
46180 silly gunzTarPerm modified mode [ 'chain/lodash.js', 420, 436 ]
46181 silly gunzTarPerm extractEntry chain/wrapperReverse.js
46182 silly gunzTarPerm modified mode [ 'chain/wrapperReverse.js', 420, 436 ]
46183 silly gunzTarPerm extractEntry chain/concat.js
46184 silly gunzTarPerm modified mode [ 'chain/concat.js', 420, 436 ]
46185 silly gunzTarPerm extractEntry chain/wrapperToString.js
46186 silly gunzTarPerm modified mode [ 'chain/wrapperToString.js', 420, 436 ]
46187 silly gunzTarPerm extractEntry chain/commit.js
46188 silly gunzTarPerm modified mode [ 'chain/commit.js', 420, 436 ]
46189 silly gunzTarPerm extractEntry chain/wrapperValue.js
46190 silly gunzTarPerm modified mode [ 'chain/wrapperValue.js', 420, 436 ]
46191 silly gunzTarPerm extractEntry chain/toString.js
46192 silly gunzTarPerm modified mode [ 'chain/toString.js', 420, 436 ]
46193 silly gunzTarPerm extractEntry array/chunk.js
46194 silly gunzTarPerm modified mode [ 'array/chunk.js', 420, 436 ]
46195 silly gunzTarPerm extractEntry array/last.js
46196 silly gunzTarPerm modified mode [ 'array/last.js', 420, 436 ]
46197 silly gunzTarPerm extractEntry array/lastIndexOf.js
46198 silly gunzTarPerm modified mode [ 'array/lastIndexOf.js', 420, 436 ]
46199 silly gunzTarPerm extractEntry array/object.js
46200 silly gunzTarPerm modified mode [ 'array/object.js', 420, 436 ]
46201 silly gunzTarPerm extractEntry array/pull.js
46202 silly gunzTarPerm modified mode [ 'array/pull.js', 420, 436 ]
46203 silly gunzTarPerm extractEntry array/intersection.js
46204 silly gunzTarPerm modified mode [ 'array/intersection.js', 420, 436 ]
46205 silly gunzTarPerm extractEntry array/remove.js
46206 silly gunzTarPerm modified mode [ 'array/remove.js', 420, 436 ]
46207 silly gunzTarPerm extractEntry array/rest.js
46208 silly gunzTarPerm modified mode [ 'array/rest.js', 420, 436 ]
46209 silly gunzTarPerm extractEntry array/slice.js
46210 silly gunzTarPerm modified mode [ 'array/slice.js', 420, 436 ]
46211 silly gunzTarPerm extractEntry array/sortedIndex.js
46212 silly gunzTarPerm modified mode [ 'array/sortedIndex.js', 420, 436 ]
46213 silly gunzTarPerm extractEntry array/sortedLastIndex.js
46214 silly gunzTarPerm modified mode [ 'array/sortedLastIndex.js', 420, 436 ]
46215 silly gunzTarPerm extractEntry array/initial.js
46216 silly gunzTarPerm modified mode [ 'array/initial.js', 420, 436 ]
46217 silly gunzTarPerm extractEntry array/tail.js
46218 silly gunzTarPerm modified mode [ 'array/tail.js', 420, 436 ]
46219 silly gunzTarPerm extractEntry array/indexOf.js
46220 silly gunzTarPerm modified mode [ 'array/indexOf.js', 420, 436 ]
46221 silly gunzTarPerm extractEntry array/take.js
46222 silly gunzTarPerm modified mode [ 'array/take.js', 420, 436 ]
46223 silly gunzTarPerm extractEntry array/head.js
46224 silly gunzTarPerm modified mode [ 'array/head.js', 420, 436 ]
46225 silly gunzTarPerm extractEntry array/takeRight.js
46226 silly gunzTarPerm modified mode [ 'array/takeRight.js', 420, 436 ]
46227 silly gunzTarPerm extractEntry array/flattenDeep.js
46228 silly gunzTarPerm modified mode [ 'array/flattenDeep.js', 420, 436 ]
46229 silly gunzTarPerm extractEntry array/takeRightWhile.js
46230 silly gunzTarPerm modified mode [ 'array/takeRightWhile.js', 420, 436 ]
46231 silly gunzTarPerm extractEntry array/flatten.js
46232 silly gunzTarPerm modified mode [ 'array/flatten.js', 420, 436 ]
46233 silly gunzTarPerm extractEntry array/takeWhile.js
46234 silly gunzTarPerm modified mode [ 'array/takeWhile.js', 420, 436 ]
46235 silly gunzTarPerm extractEntry array/first.js
46236 silly gunzTarPerm modified mode [ 'array/first.js', 420, 436 ]
46237 silly gunzTarPerm extractEntry array/union.js
46238 silly gunzTarPerm modified mode [ 'array/union.js', 420, 436 ]
46239 silly gunzTarPerm extractEntry array/findLastIndex.js
46240 silly gunzTarPerm modified mode [ 'array/findLastIndex.js', 420, 436 ]
46241 silly gunzTarPerm extractEntry array/uniq.js
46242 silly gunzTarPerm modified mode [ 'array/uniq.js', 420, 436 ]
46243 silly gunzTarPerm extractEntry array/findIndex.js
46244 silly gunzTarPerm modified mode [ 'array/findIndex.js', 420, 436 ]
46245 silly gunzTarPerm extractEntry array/unique.js
46246 silly gunzTarPerm modified mode [ 'array/unique.js', 420, 436 ]
46247 silly gunzTarPerm extractEntry array/fill.js
46248 silly gunzTarPerm modified mode [ 'array/fill.js', 420, 436 ]
46249 silly gunzTarPerm extractEntry array/unzip.js
46250 silly gunzTarPerm modified mode [ 'array/unzip.js', 420, 436 ]
46251 silly gunzTarPerm extractEntry array/dropWhile.js
46252 silly gunzTarPerm modified mode [ 'array/dropWhile.js', 420, 436 ]
46253 silly gunzTarPerm extractEntry array/unzipWith.js
46254 silly gunzTarPerm modified mode [ 'array/unzipWith.js', 420, 436 ]
46255 silly gunzTarPerm extractEntry array/dropRightWhile.js
46256 silly gunzTarPerm modified mode [ 'array/dropRightWhile.js', 420, 436 ]
46257 silly gunzTarPerm extractEntry array/without.js
46258 silly gunzTarPerm modified mode [ 'array/without.js', 420, 436 ]
46259 silly gunzTarPerm extractEntry array/dropRight.js
46260 silly gunzTarPerm modified mode [ 'array/dropRight.js', 420, 436 ]
46261 silly gunzTarPerm extractEntry array/xor.js
46262 silly gunzTarPerm modified mode [ 'array/xor.js', 420, 436 ]
46263 silly gunzTarPerm extractEntry array/drop.js
46264 silly gunzTarPerm modified mode [ 'array/drop.js', 420, 436 ]
46265 silly gunzTarPerm extractEntry array/zip.js
46266 silly gunzTarPerm modified mode [ 'array/zip.js', 420, 436 ]
46267 silly gunzTarPerm extractEntry array/difference.js
46268 silly gunzTarPerm modified mode [ 'array/difference.js', 420, 436 ]
46269 silly gunzTarPerm extractEntry array/zipObject.js
46270 silly gunzTarPerm modified mode [ 'array/zipObject.js', 420, 436 ]
46271 silly gunzTarPerm extractEntry array/compact.js
46272 silly gunzTarPerm modified mode [ 'array/compact.js', 420, 436 ]
46273 silly gunzTarPerm extractEntry array/zipWith.js
46274 silly gunzTarPerm modified mode [ 'array/zipWith.js', 420, 436 ]
46275 silly gunzTarPerm extractEntry array/pullAt.js
46276 silly gunzTarPerm modified mode [ 'array/pullAt.js', 420, 436 ]
46277 silly gunzTarPerm extractEntry utility/attempt.js
46278 silly gunzTarPerm modified mode [ 'utility/attempt.js', 420, 436 ]
46279 silly gunzTarPerm extractEntry utility/iteratee.js
46280 silly gunzTarPerm modified mode [ 'utility/iteratee.js', 420, 436 ]
46281 silly gunzTarPerm extractEntry utility/matches.js
46282 silly gunzTarPerm modified mode [ 'utility/matches.js', 420, 436 ]
46283 silly gunzTarPerm extractEntry utility/matchesProperty.js
46284 silly gunzTarPerm modified mode [ 'utility/matchesProperty.js', 420, 436 ]
46285 silly gunzTarPerm extractEntry utility/method.js
46286 silly gunzTarPerm modified mode [ 'utility/method.js', 420, 436 ]
46287 silly gunzTarPerm extractEntry utility/identity.js
46288 silly gunzTarPerm modified mode [ 'utility/identity.js', 420, 436 ]
46289 silly gunzTarPerm extractEntry utility/mixin.js
46290 silly gunzTarPerm modified mode [ 'utility/mixin.js', 420, 436 ]
46291 silly gunzTarPerm extractEntry utility/noop.js
46292 silly gunzTarPerm modified mode [ 'utility/noop.js', 420, 436 ]
46293 silly gunzTarPerm extractEntry utility/property.js
46294 silly gunzTarPerm modified mode [ 'utility/property.js', 420, 436 ]
46295 silly gunzTarPerm extractEntry utility/propertyOf.js
46296 silly gunzTarPerm modified mode [ 'utility/propertyOf.js', 420, 436 ]
46297 silly gunzTarPerm extractEntry utility/range.js
46298 silly gunzTarPerm modified mode [ 'utility/range.js', 420, 436 ]
46299 silly gunzTarPerm extractEntry utility/constant.js
46300 silly gunzTarPerm modified mode [ 'utility/constant.js', 420, 436 ]
46301 silly gunzTarPerm extractEntry utility/times.js
46302 silly gunzTarPerm modified mode [ 'utility/times.js', 420, 436 ]
46303 silly gunzTarPerm extractEntry utility/callback.js
46304 silly gunzTarPerm modified mode [ 'utility/callback.js', 420, 436 ]
46305 silly gunzTarPerm extractEntry utility/uniqueId.js
46306 silly gunzTarPerm modified mode [ 'utility/uniqueId.js', 420, 436 ]
46307 silly gunzTarPerm extractEntry utility/methodOf.js
46308 silly gunzTarPerm modified mode [ 'utility/methodOf.js', 420, 436 ]
46309 silly gunzTarPerm extractEntry lang/clone.js
46310 silly gunzTarPerm modified mode [ 'lang/clone.js', 420, 436 ]
46311 silly gunzTarPerm extractEntry lang/isEqual.js
46312 silly gunzTarPerm modified mode [ 'lang/isEqual.js', 420, 436 ]
46313 silly gunzTarPerm extractEntry lang/isError.js
46314 silly gunzTarPerm modified mode [ 'lang/isError.js', 420, 436 ]
46315 silly gunzTarPerm extractEntry lang/isFinite.js
46316 silly gunzTarPerm modified mode [ 'lang/isFinite.js', 420, 436 ]
46317 silly gunzTarPerm extractEntry lang/isFunction.js
46318 silly gunzTarPerm modified mode [ 'lang/isFunction.js', 420, 436 ]
46319 silly gunzTarPerm extractEntry lang/isEmpty.js
46320 silly gunzTarPerm modified mode [ 'lang/isEmpty.js', 420, 436 ]
46321 silly gunzTarPerm extractEntry lang/isNaN.js
46322 silly gunzTarPerm modified mode [ 'lang/isNaN.js', 420, 436 ]
46323 silly gunzTarPerm extractEntry lang/isNative.js
46324 silly gunzTarPerm modified mode [ 'lang/isNative.js', 420, 436 ]
46325 silly gunzTarPerm extractEntry lang/isNull.js
46326 silly gunzTarPerm modified mode [ 'lang/isNull.js', 420, 436 ]
46327 silly gunzTarPerm extractEntry lang/isNumber.js
46328 silly gunzTarPerm modified mode [ 'lang/isNumber.js', 420, 436 ]
46329 silly gunzTarPerm extractEntry lang/isObject.js
46330 silly gunzTarPerm modified mode [ 'lang/isObject.js', 420, 436 ]
46331 silly gunzTarPerm extractEntry lang/isElement.js
46332 silly gunzTarPerm modified mode [ 'lang/isElement.js', 420, 436 ]
46333 silly gunzTarPerm extractEntry lang/isPlainObject.js
46334 silly gunzTarPerm modified mode [ 'lang/isPlainObject.js', 420, 436 ]
46335 silly gunzTarPerm extractEntry lang/isDate.js
46336 silly gunzTarPerm modified mode [ 'lang/isDate.js', 420, 436 ]
46337 silly gunzTarPerm extractEntry lang/isRegExp.js
46338 silly gunzTarPerm modified mode [ 'lang/isRegExp.js', 420, 436 ]
46339 silly gunzTarPerm extractEntry lang/isBoolean.js
46340 silly gunzTarPerm modified mode [ 'lang/isBoolean.js', 420, 436 ]
46341 silly gunzTarPerm extractEntry lang/isString.js
46342 silly gunzTarPerm modified mode [ 'lang/isString.js', 420, 436 ]
46343 silly gunzTarPerm extractEntry lang/isArray.js
46344 silly gunzTarPerm modified mode [ 'lang/isArray.js', 420, 436 ]
46345 silly gunzTarPerm extractEntry lang/isTypedArray.js
46346 silly gunzTarPerm modified mode [ 'lang/isTypedArray.js', 420, 436 ]
46347 silly gunzTarPerm extractEntry lang/isArguments.js
46348 silly gunzTarPerm modified mode [ 'lang/isArguments.js', 420, 436 ]
46349 silly gunzTarPerm extractEntry lang/isUndefined.js
46350 silly gunzTarPerm modified mode [ 'lang/isUndefined.js', 420, 436 ]
46351 silly gunzTarPerm extractEntry lang/gte.js
46352 silly gunzTarPerm modified mode [ 'lang/gte.js', 420, 436 ]
46353 silly gunzTarPerm extractEntry lang/lt.js
46354 silly gunzTarPerm modified mode [ 'lang/lt.js', 420, 436 ]
46355 silly gunzTarPerm extractEntry lang/gt.js
46356 silly gunzTarPerm modified mode [ 'lang/gt.js', 420, 436 ]
46357 silly gunzTarPerm extractEntry lang/lte.js
46358 silly gunzTarPerm modified mode [ 'lang/lte.js', 420, 436 ]
46359 silly gunzTarPerm extractEntry lang/eq.js
46360 silly gunzTarPerm modified mode [ 'lang/eq.js', 420, 436 ]
46361 silly gunzTarPerm extractEntry lang/toArray.js
46362 silly gunzTarPerm modified mode [ 'lang/toArray.js', 420, 436 ]
46363 silly gunzTarPerm extractEntry lang/cloneDeep.js
46364 silly gunzTarPerm modified mode [ 'lang/cloneDeep.js', 420, 436 ]
46365 silly gunzTarPerm extractEntry lang/toPlainObject.js
46366 silly gunzTarPerm modified mode [ 'lang/toPlainObject.js', 420, 436 ]
46367 silly gunzTarPerm extractEntry lang/isMatch.js
46368 silly gunzTarPerm modified mode [ 'lang/isMatch.js', 420, 436 ]
46369 silly gunzTarPerm extractEntry src/core/headers/liteheader.js
46370 silly gunzTarPerm modified mode [ 'src/core/headers/liteheader.js', 438, 436 ]
46371 silly gunzTarPerm extractEntry src/core/headers/liteintro-compat.js
46372 silly gunzTarPerm modified mode [ 'src/core/headers/liteintro-compat.js', 438, 436 ]
46373 silly gunzTarPerm extractEntry internal/baseCreate.js
46374 silly gunzTarPerm modified mode [ 'internal/baseCreate.js', 420, 436 ]
46375 silly gunzTarPerm extractEntry internal/lazyValue.js
46376 silly gunzTarPerm modified mode [ 'internal/lazyValue.js', 420, 436 ]
46377 silly gunzTarPerm extractEntry internal/baseCopy.js
46378 silly gunzTarPerm modified mode [ 'internal/baseCopy.js', 420, 436 ]
46379 silly gunzTarPerm extractEntry internal/mapDelete.js
46380 silly gunzTarPerm modified mode [ 'internal/mapDelete.js', 420, 436 ]
46381 silly gunzTarPerm extractEntry internal/baseCompareAscending.js
46382 silly gunzTarPerm modified mode [ 'internal/baseCompareAscending.js', 420, 436 ]
46383 silly gunzTarPerm extractEntry internal/mapGet.js
46384 silly gunzTarPerm modified mode [ 'internal/mapGet.js', 420, 436 ]
46385 silly gunzTarPerm extractEntry internal/baseClone.js
46386 silly gunzTarPerm modified mode [ 'internal/baseClone.js', 420, 436 ]
46387 silly gunzTarPerm extractEntry internal/mapHas.js
46388 silly gunzTarPerm modified mode [ 'internal/mapHas.js', 420, 436 ]
46389 silly gunzTarPerm extractEntry internal/baseCallback.js
46390 silly gunzTarPerm modified mode [ 'internal/baseCallback.js', 420, 436 ]
46391 silly gunzTarPerm extractEntry internal/mapSet.js
46392 silly gunzTarPerm modified mode [ 'internal/mapSet.js', 420, 436 ]
46393 silly gunzTarPerm extractEntry internal/baseAt.js
46394 silly gunzTarPerm modified mode [ 'internal/baseAt.js', 420, 436 ]
46395 silly gunzTarPerm extractEntry internal/mergeData.js
46396 silly gunzTarPerm modified mode [ 'internal/mergeData.js', 420, 436 ]
46397 silly gunzTarPerm extractEntry internal/baseAssign.js
46398 silly gunzTarPerm modified mode [ 'internal/baseAssign.js', 420, 436 ]
46399 silly gunzTarPerm extractEntry internal/mergeDefaults.js
46400 silly gunzTarPerm modified mode [ 'internal/mergeDefaults.js', 420, 436 ]
46401 silly gunzTarPerm extractEntry internal/assignWith.js
46402 silly gunzTarPerm modified mode [ 'internal/assignWith.js', 420, 436 ]
46403 silly gunzTarPerm extractEntry internal/metaMap.js
46404 silly gunzTarPerm modified mode [ 'internal/metaMap.js', 420, 436 ]
46405 silly gunzTarPerm extractEntry internal/assignOwnDefaults.js
46406 silly gunzTarPerm modified mode [ 'internal/assignOwnDefaults.js', 420, 436 ]
46407 silly gunzTarPerm extractEntry internal/pickByArray.js
46408 silly gunzTarPerm modified mode [ 'internal/pickByArray.js', 420, 436 ]
46409 silly gunzTarPerm extractEntry internal/assignDefaults.js
46410 silly gunzTarPerm modified mode [ 'internal/assignDefaults.js', 420, 436 ]
46411 silly gunzTarPerm extractEntry internal/pickByCallback.js
46412 silly gunzTarPerm modified mode [ 'internal/pickByCallback.js', 420, 436 ]
46413 silly gunzTarPerm extractEntry internal/arraySum.js
46414 silly gunzTarPerm modified mode [ 'internal/arraySum.js', 420, 436 ]
46415 silly gunzTarPerm extractEntry internal/reEscape.js
46416 silly gunzTarPerm modified mode [ 'internal/reEscape.js', 420, 436 ]
46417 silly gunzTarPerm extractEntry internal/arraySome.js
46418 silly gunzTarPerm modified mode [ 'internal/arraySome.js', 420, 436 ]
46419 silly gunzTarPerm extractEntry internal/reEvaluate.js
46420 silly gunzTarPerm modified mode [ 'internal/reEvaluate.js', 420, 436 ]
46421 silly gunzTarPerm extractEntry internal/arrayReduceRight.js
46422 silly gunzTarPerm modified mode [ 'internal/arrayReduceRight.js', 420, 436 ]
46423 silly gunzTarPerm extractEntry internal/reInterpolate.js
46424 silly gunzTarPerm modified mode [ 'internal/reInterpolate.js', 420, 436 ]
46425 silly gunzTarPerm extractEntry internal/arrayReduce.js
46426 silly gunzTarPerm modified mode [ 'internal/arrayReduce.js', 420, 436 ]
46427 silly gunzTarPerm extractEntry internal/realNames.js
46428 silly gunzTarPerm modified mode [ 'internal/realNames.js', 420, 436 ]
46429 silly gunzTarPerm extractEntry internal/arrayPush.js
46430 silly gunzTarPerm modified mode [ 'internal/arrayPush.js', 420, 436 ]
46431 silly gunzTarPerm extractEntry internal/reorder.js
46432 silly gunzTarPerm modified mode [ 'internal/reorder.js', 420, 436 ]
46433 silly gunzTarPerm extractEntry internal/arrayMap.js
46434 silly gunzTarPerm modified mode [ 'internal/arrayMap.js', 420, 436 ]
46435 silly gunzTarPerm extractEntry internal/replaceHolders.js
46436 silly gunzTarPerm modified mode [ 'internal/replaceHolders.js', 420, 436 ]
46437 silly gunzTarPerm extractEntry internal/arrayFilter.js
46438 silly gunzTarPerm modified mode [ 'internal/arrayFilter.js', 420, 436 ]
46439 silly gunzTarPerm extractEntry internal/setData.js
46440 silly gunzTarPerm modified mode [ 'internal/setData.js', 420, 436 ]
46441 silly gunzTarPerm extractEntry internal/arrayExtremum.js
46442 silly gunzTarPerm modified mode [ 'internal/arrayExtremum.js', 420, 436 ]
46443 silly gunzTarPerm extractEntry internal/shimKeys.js
46444 silly gunzTarPerm modified mode [ 'internal/shimKeys.js', 420, 436 ]
46445 silly gunzTarPerm extractEntry internal/arrayEvery.js
46446 silly gunzTarPerm modified mode [ 'internal/arrayEvery.js', 420, 436 ]
46447 silly gunzTarPerm extractEntry internal/sortedUniq.js
46448 silly gunzTarPerm modified mode [ 'internal/sortedUniq.js', 420, 436 ]
46449 silly gunzTarPerm extractEntry internal/arrayEachRight.js
46450 silly gunzTarPerm modified mode [ 'internal/arrayEachRight.js', 420, 436 ]
46451 silly gunzTarPerm extractEntry internal/toIterable.js
46452 silly gunzTarPerm modified mode [ 'internal/toIterable.js', 420, 436 ]
46453 silly gunzTarPerm extractEntry internal/arrayEach.js
46454 silly gunzTarPerm modified mode [ 'internal/arrayEach.js', 420, 436 ]
46455 silly gunzTarPerm extractEntry internal/toObject.js
46456 silly gunzTarPerm modified mode [ 'internal/toObject.js', 420, 436 ]
46457 silly gunzTarPerm extractEntry internal/arrayCopy.js
46458 silly gunzTarPerm modified mode [ 'internal/arrayCopy.js', 420, 436 ]
46459 silly gunzTarPerm extractEntry internal/toPath.js
46460 silly gunzTarPerm modified mode [ 'internal/toPath.js', 420, 436 ]
46461 silly gunzTarPerm extractEntry internal/arrayConcat.js
46462 silly gunzTarPerm modified mode [ 'internal/arrayConcat.js', 420, 436 ]
46463 silly gunzTarPerm extractEntry internal/trimmedLeftIndex.js
46464 silly gunzTarPerm modified mode [ 'internal/trimmedLeftIndex.js', 420, 436 ]
46465 silly gunzTarPerm extractEntry internal/SetCache.js
46466 silly gunzTarPerm modified mode [ 'internal/SetCache.js', 420, 436 ]
46467 silly gunzTarPerm extractEntry internal/trimmedRightIndex.js
46468 silly gunzTarPerm modified mode [ 'internal/trimmedRightIndex.js', 420, 436 ]
46469 silly gunzTarPerm extractEntry internal/MapCache.js
46470 silly gunzTarPerm modified mode [ 'internal/MapCache.js', 420, 436 ]
46471 silly gunzTarPerm extractEntry internal/unescapeHtmlChar.js
46472 silly gunzTarPerm modified mode [ 'internal/unescapeHtmlChar.js', 420, 436 ]
46473 silly gunzTarPerm extractEntry internal/LodashWrapper.js
46474 silly gunzTarPerm modified mode [ 'internal/LodashWrapper.js', 420, 436 ]
46475 silly gunzTarPerm extractEntry internal/wrapperClone.js
46476 silly gunzTarPerm modified mode [ 'internal/wrapperClone.js', 420, 436 ]
46477 silly gunzTarPerm extractEntry internal/composeArgsRight.js
46478 silly gunzTarPerm modified mode [ 'internal/composeArgsRight.js', 420, 436 ]
46479 silly gunzTarPerm extractEntry string/camelCase.js
46480 silly gunzTarPerm modified mode [ 'string/camelCase.js', 420, 436 ]
46481 silly gunzTarPerm extractEntry string/padLeft.js
46482 silly gunzTarPerm modified mode [ 'string/padLeft.js', 420, 436 ]
46483 silly gunzTarPerm extractEntry string/padRight.js
46484 silly gunzTarPerm modified mode [ 'string/padRight.js', 420, 436 ]
46485 silly gunzTarPerm extractEntry string/parseInt.js
46486 silly gunzTarPerm modified mode [ 'string/parseInt.js', 420, 436 ]
46487 silly gunzTarPerm extractEntry string/pad.js
46488 silly gunzTarPerm modified mode [ 'string/pad.js', 420, 436 ]
46489 silly gunzTarPerm extractEntry string/snakeCase.js
46490 silly gunzTarPerm modified mode [ 'string/snakeCase.js', 420, 436 ]
46491 silly gunzTarPerm extractEntry string/startCase.js
46492 silly gunzTarPerm modified mode [ 'string/startCase.js', 420, 436 ]
46493 silly gunzTarPerm extractEntry string/startsWith.js
46494 silly gunzTarPerm modified mode [ 'string/startsWith.js', 420, 436 ]
46495 silly gunzTarPerm extractEntry string/template.js
46496 silly gunzTarPerm modified mode [ 'string/template.js', 420, 436 ]
46497 silly gunzTarPerm extractEntry string/templateSettings.js
46498 silly gunzTarPerm modified mode [ 'string/templateSettings.js', 420, 436 ]
46499 silly gunzTarPerm extractEntry string/kebabCase.js
46500 silly gunzTarPerm modified mode [ 'string/kebabCase.js', 420, 436 ]
46501 silly gunzTarPerm extractEntry string/trim.js
46502 silly gunzTarPerm modified mode [ 'string/trim.js', 420, 436 ]
46503 silly gunzTarPerm extractEntry string/escapeRegExp.js
46504 silly gunzTarPerm modified mode [ 'string/escapeRegExp.js', 420, 436 ]
46505 silly gunzTarPerm extractEntry string/trimLeft.js
46506 silly gunzTarPerm modified mode [ 'string/trimLeft.js', 420, 436 ]
46507 silly gunzTarPerm extractEntry string/escape.js
46508 silly gunzTarPerm modified mode [ 'string/escape.js', 420, 436 ]
46509 silly gunzTarPerm extractEntry string/trimRight.js
46510 silly gunzTarPerm modified mode [ 'string/trimRight.js', 420, 436 ]
46511 silly gunzTarPerm extractEntry string/endsWith.js
46512 silly gunzTarPerm modified mode [ 'string/endsWith.js', 420, 436 ]
46513 silly gunzTarPerm extractEntry string/trunc.js
46514 silly gunzTarPerm modified mode [ 'string/trunc.js', 420, 436 ]
46515 silly gunzTarPerm extractEntry string/deburr.js
46516 silly gunzTarPerm modified mode [ 'string/deburr.js', 420, 436 ]
46517 silly gunzTarPerm extractEntry string/unescape.js
46518 silly gunzTarPerm modified mode [ 'string/unescape.js', 420, 436 ]
46519 silly gunzTarPerm extractEntry string/capitalize.js
46520 silly gunzTarPerm modified mode [ 'string/capitalize.js', 420, 436 ]
46521 silly gunzTarPerm extractEntry string/words.js
46522 silly gunzTarPerm modified mode [ 'string/words.js', 420, 436 ]
46523 silly gunzTarPerm extractEntry string/repeat.js
46524 silly gunzTarPerm modified mode [ 'string/repeat.js', 420, 436 ]
46525 silly gunzTarPerm extractEntry chain/chain.js
46526 silly gunzTarPerm modified mode [ 'chain/chain.js', 420, 436 ]
46527 silly gunzTarPerm extractEntry chain/run.js
46528 silly gunzTarPerm modified mode [ 'chain/run.js', 420, 436 ]
46529 silly gunzTarPerm extractEntry chain/tap.js
46530 silly gunzTarPerm modified mode [ 'chain/tap.js', 420, 436 ]
46531 silly gunzTarPerm extractEntry chain/thru.js
46532 silly gunzTarPerm modified mode [ 'chain/thru.js', 420, 436 ]
46533 silly gunzTarPerm extractEntry chain/toJSON.js
46534 silly gunzTarPerm modified mode [ 'chain/toJSON.js', 420, 436 ]
46535 silly gunzTarPerm extractEntry chain/reverse.js
46536 silly gunzTarPerm modified mode [ 'chain/reverse.js', 420, 436 ]
46537 silly gunzTarPerm extractEntry chain/value.js
46538 silly gunzTarPerm modified mode [ 'chain/value.js', 420, 436 ]
46539 silly gunzTarPerm extractEntry chain/valueOf.js
46540 silly gunzTarPerm modified mode [ 'chain/valueOf.js', 420, 436 ]
46541 silly gunzTarPerm extractEntry chain/wrapperChain.js
46542 silly gunzTarPerm modified mode [ 'chain/wrapperChain.js', 420, 436 ]
46543 silly gunzTarPerm extractEntry chain/wrapperCommit.js
46544 silly gunzTarPerm modified mode [ 'chain/wrapperCommit.js', 420, 436 ]
46545 silly gunzTarPerm extractEntry chain/wrapperConcat.js
46546 silly gunzTarPerm modified mode [ 'chain/wrapperConcat.js', 420, 436 ]
46547 silly gunzTarPerm extractEntry chain/plant.js
46548 silly gunzTarPerm modified mode [ 'chain/plant.js', 420, 436 ]
46549 silly gunzTarPerm extractEntry chain/wrapperPlant.js
46550 silly gunzTarPerm modified mode [ 'chain/wrapperPlant.js', 420, 436 ]
46551 silly gunzTarPerm extractEntry chain/lodash.js
46552 silly gunzTarPerm modified mode [ 'chain/lodash.js', 420, 436 ]
46553 silly gunzTarPerm extractEntry chain/wrapperReverse.js
46554 silly gunzTarPerm modified mode [ 'chain/wrapperReverse.js', 420, 436 ]
46555 silly gunzTarPerm extractEntry chain/concat.js
46556 silly gunzTarPerm modified mode [ 'chain/concat.js', 420, 436 ]
46557 silly gunzTarPerm extractEntry chain/wrapperToString.js
46558 silly gunzTarPerm modified mode [ 'chain/wrapperToString.js', 420, 436 ]
46559 silly gunzTarPerm extractEntry chain/commit.js
46560 silly gunzTarPerm modified mode [ 'chain/commit.js', 420, 436 ]
46561 silly gunzTarPerm extractEntry chain/wrapperValue.js
46562 silly gunzTarPerm modified mode [ 'chain/wrapperValue.js', 420, 436 ]
46563 silly gunzTarPerm extractEntry chain/toString.js
46564 silly gunzTarPerm modified mode [ 'chain/toString.js', 420, 436 ]
46565 silly gunzTarPerm extractEntry array/chunk.js
46566 silly gunzTarPerm modified mode [ 'array/chunk.js', 420, 436 ]
46567 silly gunzTarPerm extractEntry array/last.js
46568 silly gunzTarPerm modified mode [ 'array/last.js', 420, 436 ]
46569 silly gunzTarPerm extractEntry array/lastIndexOf.js
46570 silly gunzTarPerm modified mode [ 'array/lastIndexOf.js', 420, 436 ]
46571 silly gunzTarPerm extractEntry array/object.js
46572 silly gunzTarPerm modified mode [ 'array/object.js', 420, 436 ]
46573 silly gunzTarPerm extractEntry array/pull.js
46574 silly gunzTarPerm modified mode [ 'array/pull.js', 420, 436 ]
46575 silly gunzTarPerm extractEntry array/intersection.js
46576 silly gunzTarPerm modified mode [ 'array/intersection.js', 420, 436 ]
46577 silly gunzTarPerm extractEntry array/remove.js
46578 silly gunzTarPerm modified mode [ 'array/remove.js', 420, 436 ]
46579 silly gunzTarPerm extractEntry array/rest.js
46580 silly gunzTarPerm modified mode [ 'array/rest.js', 420, 436 ]
46581 silly gunzTarPerm extractEntry array/slice.js
46582 silly gunzTarPerm modified mode [ 'array/slice.js', 420, 436 ]
46583 silly gunzTarPerm extractEntry array/sortedIndex.js
46584 silly gunzTarPerm modified mode [ 'array/sortedIndex.js', 420, 436 ]
46585 silly gunzTarPerm extractEntry array/sortedLastIndex.js
46586 silly gunzTarPerm modified mode [ 'array/sortedLastIndex.js', 420, 436 ]
46587 silly gunzTarPerm extractEntry array/initial.js
46588 silly gunzTarPerm modified mode [ 'array/initial.js', 420, 436 ]
46589 silly gunzTarPerm extractEntry array/tail.js
46590 silly gunzTarPerm modified mode [ 'array/tail.js', 420, 436 ]
46591 silly gunzTarPerm extractEntry array/indexOf.js
46592 silly gunzTarPerm modified mode [ 'array/indexOf.js', 420, 436 ]
46593 silly gunzTarPerm extractEntry array/take.js
46594 silly gunzTarPerm modified mode [ 'array/take.js', 420, 436 ]
46595 silly gunzTarPerm extractEntry array/head.js
46596 silly gunzTarPerm modified mode [ 'array/head.js', 420, 436 ]
46597 silly gunzTarPerm extractEntry array/takeRight.js
46598 silly gunzTarPerm modified mode [ 'array/takeRight.js', 420, 436 ]
46599 silly gunzTarPerm extractEntry array/flattenDeep.js
46600 silly gunzTarPerm modified mode [ 'array/flattenDeep.js', 420, 436 ]
46601 silly gunzTarPerm extractEntry array/takeRightWhile.js
46602 silly gunzTarPerm modified mode [ 'array/takeRightWhile.js', 420, 436 ]
46603 silly gunzTarPerm extractEntry array/flatten.js
46604 silly gunzTarPerm modified mode [ 'array/flatten.js', 420, 436 ]
46605 silly gunzTarPerm extractEntry array/takeWhile.js
46606 silly gunzTarPerm modified mode [ 'array/takeWhile.js', 420, 436 ]
46607 silly gunzTarPerm extractEntry array/first.js
46608 silly gunzTarPerm modified mode [ 'array/first.js', 420, 436 ]
46609 silly gunzTarPerm extractEntry array/union.js
46610 silly gunzTarPerm modified mode [ 'array/union.js', 420, 436 ]
46611 silly gunzTarPerm extractEntry array/findLastIndex.js
46612 silly gunzTarPerm modified mode [ 'array/findLastIndex.js', 420, 436 ]
46613 silly gunzTarPerm extractEntry array/uniq.js
46614 silly gunzTarPerm modified mode [ 'array/uniq.js', 420, 436 ]
46615 silly gunzTarPerm extractEntry array/findIndex.js
46616 silly gunzTarPerm modified mode [ 'array/findIndex.js', 420, 436 ]
46617 silly gunzTarPerm extractEntry array/unique.js
46618 silly gunzTarPerm modified mode [ 'array/unique.js', 420, 436 ]
46619 silly gunzTarPerm extractEntry array/fill.js
46620 silly gunzTarPerm modified mode [ 'array/fill.js', 420, 436 ]
46621 silly gunzTarPerm extractEntry array/unzip.js
46622 silly gunzTarPerm modified mode [ 'array/unzip.js', 420, 436 ]
46623 silly gunzTarPerm extractEntry array/dropWhile.js
46624 silly gunzTarPerm modified mode [ 'array/dropWhile.js', 420, 436 ]
46625 silly gunzTarPerm extractEntry array/unzipWith.js
46626 silly gunzTarPerm modified mode [ 'array/unzipWith.js', 420, 436 ]
46627 silly gunzTarPerm extractEntry array/dropRightWhile.js
46628 silly gunzTarPerm modified mode [ 'array/dropRightWhile.js', 420, 436 ]
46629 silly gunzTarPerm extractEntry array/without.js
46630 silly gunzTarPerm modified mode [ 'array/without.js', 420, 436 ]
46631 silly gunzTarPerm extractEntry array/dropRight.js
46632 silly gunzTarPerm modified mode [ 'array/dropRight.js', 420, 436 ]
46633 silly gunzTarPerm extractEntry array/xor.js
46634 silly gunzTarPerm modified mode [ 'array/xor.js', 420, 436 ]
46635 silly gunzTarPerm extractEntry array/drop.js
46636 silly gunzTarPerm modified mode [ 'array/drop.js', 420, 436 ]
46637 silly gunzTarPerm extractEntry array/zip.js
46638 silly gunzTarPerm modified mode [ 'array/zip.js', 420, 436 ]
46639 silly gunzTarPerm extractEntry array/difference.js
46640 silly gunzTarPerm modified mode [ 'array/difference.js', 420, 436 ]
46641 silly gunzTarPerm extractEntry array/zipObject.js
46642 silly gunzTarPerm modified mode [ 'array/zipObject.js', 420, 436 ]
46643 silly gunzTarPerm extractEntry array/compact.js
46644 silly gunzTarPerm modified mode [ 'array/compact.js', 420, 436 ]
46645 silly gunzTarPerm extractEntry array/zipWith.js
46646 silly gunzTarPerm modified mode [ 'array/zipWith.js', 420, 436 ]
46647 silly gunzTarPerm extractEntry array/pullAt.js
46648 silly gunzTarPerm modified mode [ 'array/pullAt.js', 420, 436 ]
46649 silly gunzTarPerm extractEntry utility/attempt.js
46650 silly gunzTarPerm modified mode [ 'utility/attempt.js', 420, 436 ]
46651 silly gunzTarPerm extractEntry utility/iteratee.js
46652 silly gunzTarPerm modified mode [ 'utility/iteratee.js', 420, 436 ]
46653 silly gunzTarPerm extractEntry utility/matches.js
46654 silly gunzTarPerm modified mode [ 'utility/matches.js', 420, 436 ]
46655 silly gunzTarPerm extractEntry utility/matchesProperty.js
46656 silly gunzTarPerm modified mode [ 'utility/matchesProperty.js', 420, 436 ]
46657 silly gunzTarPerm extractEntry utility/method.js
46658 silly gunzTarPerm modified mode [ 'utility/method.js', 420, 436 ]
46659 silly gunzTarPerm extractEntry utility/identity.js
46660 silly gunzTarPerm modified mode [ 'utility/identity.js', 420, 436 ]
46661 silly gunzTarPerm extractEntry utility/mixin.js
46662 silly gunzTarPerm modified mode [ 'utility/mixin.js', 420, 436 ]
46663 silly gunzTarPerm extractEntry utility/noop.js
46664 silly gunzTarPerm modified mode [ 'utility/noop.js', 420, 436 ]
46665 silly gunzTarPerm extractEntry utility/property.js
46666 silly gunzTarPerm modified mode [ 'utility/property.js', 420, 436 ]
46667 silly gunzTarPerm extractEntry utility/propertyOf.js
46668 silly gunzTarPerm modified mode [ 'utility/propertyOf.js', 420, 436 ]
46669 silly gunzTarPerm extractEntry utility/range.js
46670 silly gunzTarPerm modified mode [ 'utility/range.js', 420, 436 ]
46671 silly gunzTarPerm extractEntry utility/constant.js
46672 silly gunzTarPerm modified mode [ 'utility/constant.js', 420, 436 ]
46673 silly gunzTarPerm extractEntry utility/times.js
46674 silly gunzTarPerm modified mode [ 'utility/times.js', 420, 436 ]
46675 silly gunzTarPerm extractEntry utility/callback.js
46676 silly gunzTarPerm modified mode [ 'utility/callback.js', 420, 436 ]
46677 silly gunzTarPerm extractEntry utility/uniqueId.js
46678 silly gunzTarPerm modified mode [ 'utility/uniqueId.js', 420, 436 ]
46679 silly gunzTarPerm extractEntry utility/methodOf.js
46680 silly gunzTarPerm modified mode [ 'utility/methodOf.js', 420, 436 ]
46681 silly gunzTarPerm extractEntry lang/clone.js
46682 silly gunzTarPerm modified mode [ 'lang/clone.js', 420, 436 ]
46683 silly gunzTarPerm extractEntry lang/isEqual.js
46684 silly gunzTarPerm modified mode [ 'lang/isEqual.js', 420, 436 ]
46685 silly gunzTarPerm extractEntry lang/isError.js
46686 silly gunzTarPerm modified mode [ 'lang/isError.js', 420, 436 ]
46687 silly gunzTarPerm extractEntry lang/isFinite.js
46688 silly gunzTarPerm modified mode [ 'lang/isFinite.js', 420, 436 ]
46689 silly gunzTarPerm extractEntry lang/isFunction.js
46690 silly gunzTarPerm modified mode [ 'lang/isFunction.js', 420, 436 ]
46691 silly gunzTarPerm extractEntry lang/isEmpty.js
46692 silly gunzTarPerm modified mode [ 'lang/isEmpty.js', 420, 436 ]
46693 silly gunzTarPerm extractEntry lang/isNaN.js
46694 silly gunzTarPerm modified mode [ 'lang/isNaN.js', 420, 436 ]
46695 silly gunzTarPerm extractEntry lang/isNative.js
46696 silly gunzTarPerm modified mode [ 'lang/isNative.js', 420, 436 ]
46697 silly gunzTarPerm extractEntry lang/isNull.js
46698 silly gunzTarPerm modified mode [ 'lang/isNull.js', 420, 436 ]
46699 silly gunzTarPerm extractEntry lang/isNumber.js
46700 silly gunzTarPerm modified mode [ 'lang/isNumber.js', 420, 436 ]
46701 silly gunzTarPerm extractEntry lang/isObject.js
46702 silly gunzTarPerm modified mode [ 'lang/isObject.js', 420, 436 ]
46703 silly gunzTarPerm extractEntry lang/isElement.js
46704 silly gunzTarPerm modified mode [ 'lang/isElement.js', 420, 436 ]
46705 silly gunzTarPerm extractEntry lang/isPlainObject.js
46706 silly gunzTarPerm modified mode [ 'lang/isPlainObject.js', 420, 436 ]
46707 silly gunzTarPerm extractEntry lang/isDate.js
46708 silly gunzTarPerm modified mode [ 'lang/isDate.js', 420, 436 ]
46709 silly gunzTarPerm extractEntry lang/isRegExp.js
46710 silly gunzTarPerm modified mode [ 'lang/isRegExp.js', 420, 436 ]
46711 silly gunzTarPerm extractEntry lang/isBoolean.js
46712 silly gunzTarPerm modified mode [ 'lang/isBoolean.js', 420, 436 ]
46713 silly gunzTarPerm extractEntry lang/isString.js
46714 silly gunzTarPerm modified mode [ 'lang/isString.js', 420, 436 ]
46715 silly gunzTarPerm extractEntry lang/isArray.js
46716 silly gunzTarPerm modified mode [ 'lang/isArray.js', 420, 436 ]
46717 silly gunzTarPerm extractEntry lang/isTypedArray.js
46718 silly gunzTarPerm modified mode [ 'lang/isTypedArray.js', 420, 436 ]
46719 silly gunzTarPerm extractEntry lang/isArguments.js
46720 silly gunzTarPerm modified mode [ 'lang/isArguments.js', 420, 436 ]
46721 silly gunzTarPerm extractEntry lang/isUndefined.js
46722 silly gunzTarPerm modified mode [ 'lang/isUndefined.js', 420, 436 ]
46723 silly gunzTarPerm extractEntry lang/gte.js
46724 silly gunzTarPerm modified mode [ 'lang/gte.js', 420, 436 ]
46725 silly gunzTarPerm extractEntry lang/lt.js
46726 silly gunzTarPerm modified mode [ 'lang/lt.js', 420, 436 ]
46727 silly gunzTarPerm extractEntry lang/gt.js
46728 silly gunzTarPerm modified mode [ 'lang/gt.js', 420, 436 ]
46729 silly gunzTarPerm extractEntry lang/lte.js
46730 silly gunzTarPerm modified mode [ 'lang/lte.js', 420, 436 ]
46731 silly gunzTarPerm extractEntry lang/eq.js
46732 silly gunzTarPerm modified mode [ 'lang/eq.js', 420, 436 ]
46733 silly gunzTarPerm extractEntry lang/toArray.js
46734 silly gunzTarPerm modified mode [ 'lang/toArray.js', 420, 436 ]
46735 silly gunzTarPerm extractEntry lang/cloneDeep.js
46736 silly gunzTarPerm modified mode [ 'lang/cloneDeep.js', 420, 436 ]
46737 silly gunzTarPerm extractEntry lang/toPlainObject.js
46738 silly gunzTarPerm modified mode [ 'lang/toPlainObject.js', 420, 436 ]
46739 silly gunzTarPerm extractEntry lang/isMatch.js
46740 silly gunzTarPerm modified mode [ 'lang/isMatch.js', 420, 436 ]
46741 silly gunzTarPerm extractEntry src/core/headers/liteintro.js
46742 silly gunzTarPerm modified mode [ 'src/core/headers/liteintro.js', 438, 436 ]
46743 silly gunzTarPerm extractEntry src/core/headers/litetestintro-compat.js
46744 silly gunzTarPerm modified mode [ 'src/core/headers/litetestintro-compat.js', 438, 436 ]
46745 silly gunzTarPerm extractEntry src/core/headers/experimentalheader.js
46746 silly gunzTarPerm modified mode [ 'src/core/headers/experimentalheader.js', 438, 436 ]
46747 silly gunzTarPerm extractEntry src/core/headers/litetestintro.js
46748 silly gunzTarPerm modified mode [ 'src/core/headers/litetestintro.js', 438, 436 ]
46749 silly gunzTarPerm extractEntry src/core/headers/enumeratorheader.js
46750 silly gunzTarPerm modified mode [ 'src/core/headers/enumeratorheader.js', 438, 436 ]
46751 silly gunzTarPerm extractEntry src/core/headers/outro.js
46752 silly gunzTarPerm modified mode [ 'src/core/headers/outro.js', 438, 436 ]
46753 silly gunzTarPerm extractEntry src/core/headers/coincidenceheader.js
46754 silly gunzTarPerm modified mode [ 'src/core/headers/coincidenceheader.js', 438, 436 ]
46755 silly gunzTarPerm extractEntry src/core/headers/sortingheader.js
46756 silly gunzTarPerm modified mode [ 'src/core/headers/sortingheader.js', 438, 436 ]
46757 silly gunzTarPerm extractEntry src/core/headers/bindingheader.js
46758 silly gunzTarPerm modified mode [ 'src/core/headers/bindingheader.js', 438, 436 ]
46759 silly gunzTarPerm extractEntry src/core/headers/subintro.js
46760 silly gunzTarPerm modified mode [ 'src/core/headers/subintro.js', 438, 436 ]
46761 silly gunzTarPerm extractEntry src/core/headers/basicheader.js
46762 silly gunzTarPerm modified mode [ 'src/core/headers/basicheader.js', 438, 436 ]
46763 silly gunzTarPerm extractEntry src/core/headers/suboutro.js
46764 silly gunzTarPerm modified mode [ 'src/core/headers/suboutro.js', 438, 436 ]
46765 silly gunzTarPerm extractEntry src/core/headers/basicheader-compat.js
46766 silly gunzTarPerm modified mode [ 'src/core/headers/basicheader-compat.js', 438, 436 ]
46767 silly gunzTarPerm extractEntry src/core/headers/testheader.js
46768 silly gunzTarPerm modified mode [ 'src/core/headers/testheader.js', 438, 436 ]
46769 silly gunzTarPerm extractEntry src/core/headers/backpressureheader.js
46770 silly gunzTarPerm modified mode [ 'src/core/headers/backpressureheader.js', 438, 436 ]
46771 silly gunzTarPerm extractEntry src/core/headers/testintro.js
46772 silly gunzTarPerm modified mode [ 'src/core/headers/testintro.js', 438, 436 ]
46773 silly gunzTarPerm extractEntry src/core/headers/asyncintro.js
46774 silly gunzTarPerm modified mode [ 'src/core/headers/asyncintro.js', 438, 436 ]
46775 silly gunzTarPerm extractEntry src/core/headers/timeheader.js
46776 silly gunzTarPerm modified mode [ 'src/core/headers/timeheader.js', 438, 436 ]
46777 silly gunzTarPerm extractEntry src/core/headers/asyncheader.js
46778 silly gunzTarPerm modified mode [ 'src/core/headers/asyncheader.js', 438, 436 ]
46779 silly gunzTarPerm extractEntry src/core/headers/virtualtimeheader.js
46780 silly gunzTarPerm modified mode [ 'src/core/headers/virtualtimeheader.js', 438, 436 ]
46781 silly gunzTarPerm extractEntry src/core/headers/liteextrasheader.js
46782 silly gunzTarPerm modified mode [ 'src/core/headers/liteextrasheader.js', 438, 436 ]
46783 silly gunzTarPerm extractEntry src/core/internal/bindcallback.js
46784 silly gunzTarPerm modified mode [ 'src/core/internal/bindcallback.js', 438, 436 ]
46785 silly gunzTarPerm extractEntry src/core/internal/dictionary.js
46786 silly gunzTarPerm modified mode [ 'src/core/internal/dictionary.js', 438, 436 ]
46787 silly gunzTarPerm extractEntry src/core/internal/dontenums.js
46788 silly gunzTarPerm modified mode [ 'src/core/internal/dontenums.js', 438, 436 ]
46789 silly gunzTarPerm extractEntry src/core/internal/errors.js
46790 silly gunzTarPerm modified mode [ 'src/core/internal/errors.js', 438, 436 ]
46791 silly gunzTarPerm extractEntry src/core/internal/deprecate.js
46792 silly gunzTarPerm modified mode [ 'src/core/internal/deprecate.js', 438, 436 ]
46793 silly gunzTarPerm extractEntry src/core/internal/map.js
46794 silly gunzTarPerm modified mode [ 'src/core/internal/map.js', 438, 436 ]
46795 silly gunzTarPerm extractEntry src/core/internal/polyfills.js
46796 silly gunzTarPerm modified mode [ 'src/core/internal/polyfills.js', 438, 436 ]
46797 silly gunzTarPerm extractEntry src/core/internal/priorityqueue.js
46798 silly gunzTarPerm modified mode [ 'src/core/internal/priorityqueue.js', 438, 436 ]
46799 silly gunzTarPerm extractEntry src/core/internal/trycatch.js
46800 silly gunzTarPerm modified mode [ 'src/core/internal/trycatch.js', 438, 436 ]
46801 silly gunzTarPerm extractEntry src/core/internal/util.js
46802 silly gunzTarPerm modified mode [ 'src/core/internal/util.js', 438, 436 ]
46803 silly gunzTarPerm extractEntry src/core/internal/isequal.js
46804 silly gunzTarPerm modified mode [ 'src/core/internal/isequal.js', 438, 436 ]
46805 silly gunzTarPerm extractEntry src/core/perf/observablebase.js
46806 silly gunzTarPerm modified mode [ 'src/core/perf/observablebase.js', 438, 436 ]
46807 silly gunzTarPerm extractEntry src/core/perf/observerbase.js
46808 silly gunzTarPerm modified mode [ 'src/core/perf/observerbase.js', 438, 436 ]
46809 silly gunzTarPerm extractEntry src/core/perf/operators/combinelatest.js
46810 silly gunzTarPerm modified mode [ 'src/core/perf/operators/combinelatest.js', 438, 436 ]
46811 silly gunzTarPerm extractEntry src/core/perf/operators/just.js
46812 silly gunzTarPerm modified mode [ 'src/core/perf/operators/just.js', 438, 436 ]
46813 silly gunzTarPerm extractEntry src/core/perf/operators/map.js
46814 silly gunzTarPerm modified mode [ 'src/core/perf/operators/map.js', 438, 436 ]
46815 silly gunzTarPerm extractEntry src/core/perf/operators/mergeall.js
46816 silly gunzTarPerm modified mode [ 'src/core/perf/operators/mergeall.js', 438, 436 ]
46817 silly gunzTarPerm extractEntry src/core/perf/operators/mergeproto.js
46818 silly gunzTarPerm modified mode [ 'src/core/perf/operators/mergeproto.js', 438, 436 ]
46819 silly gunzTarPerm extractEntry src/core/perf/operators/ignoreelements.js
46820 silly gunzTarPerm modified mode [ 'src/core/perf/operators/ignoreelements.js', 438, 436 ]
46821 silly gunzTarPerm extractEntry src/core/perf/operators/of.js
46822 silly gunzTarPerm modified mode [ 'src/core/perf/operators/of.js', 438, 436 ]
46823 silly gunzTarPerm extractEntry src/core/perf/operators/pairs.js
46824 silly gunzTarPerm modified mode [ 'src/core/perf/operators/pairs.js', 438, 436 ]
46825 silly gunzTarPerm extractEntry src/core/perf/operators/range.js
46826 silly gunzTarPerm modified mode [ 'src/core/perf/operators/range.js', 438, 436 ]
46827 silly gunzTarPerm extractEntry src/core/perf/operators/reduce.js
46828 silly gunzTarPerm modified mode [ 'src/core/perf/operators/reduce.js', 438, 436 ]
46829 silly gunzTarPerm extractEntry src/core/perf/operators/repeat.js
46830 silly gunzTarPerm modified mode [ 'src/core/perf/operators/repeat.js', 438, 436 ]
46831 silly gunzTarPerm extractEntry src/core/perf/operators/frompromise.js
46832 silly gunzTarPerm modified mode [ 'src/core/perf/operators/frompromise.js', 438, 436 ]
46833 silly gunzTarPerm extractEntry src/core/perf/operators/scan.js
46834 silly gunzTarPerm modified mode [ 'src/core/perf/operators/scan.js', 438, 436 ]
46835 silly gunzTarPerm extractEntry src/core/perf/operators/fromarrayobservable.js
46836 silly gunzTarPerm modified mode [ 'src/core/perf/operators/fromarrayobservable.js', 438, 436 ]
46837 silly gunzTarPerm extractEntry src/core/perf/operators/skip.js
46838 silly gunzTarPerm modified mode [ 'src/core/perf/operators/skip.js', 438, 436 ]
46839 silly gunzTarPerm extractEntry src/core/perf/operators/fromarray.js
46840 silly gunzTarPerm modified mode [ 'src/core/perf/operators/fromarray.js', 438, 436 ]
46841 silly gunzTarPerm extractEntry src/core/perf/operators/switch.js
46842 silly gunzTarPerm modified mode [ 'src/core/perf/operators/switch.js', 438, 436 ]
46843 silly gunzTarPerm extractEntry src/core/perf/operators/from.js
46844 silly gunzTarPerm modified mode [ 'src/core/perf/operators/from.js', 438, 436 ]
46845 silly gunzTarPerm extractEntry src/core/perf/operators/take.js
46846 silly gunzTarPerm modified mode [ 'src/core/perf/operators/take.js', 438, 436 ]
46847 silly gunzTarPerm extractEntry src/core/perf/operators/finally.js
46848 silly gunzTarPerm modified mode [ 'src/core/perf/operators/finally.js', 438, 436 ]
46849 silly gunzTarPerm extractEntry src/core/perf/operators/takeuntil.js
46850 silly gunzTarPerm modified mode [ 'src/core/perf/operators/takeuntil.js', 438, 436 ]
46851 silly gunzTarPerm extractEntry src/core/perf/operators/filter.js
46852 silly gunzTarPerm modified mode [ 'src/core/perf/operators/filter.js', 438, 436 ]
46853 silly gunzTarPerm extractEntry src/core/perf/operators/tap.js
46854 silly gunzTarPerm modified mode [ 'src/core/perf/operators/tap.js', 438, 436 ]
46855 silly gunzTarPerm extractEntry src/core/perf/operators/empty.js
46856 silly gunzTarPerm modified mode [ 'src/core/perf/operators/empty.js', 438, 436 ]
46857 silly gunzTarPerm extractEntry src/core/perf/operators/throw.js
46858 silly gunzTarPerm modified mode [ 'src/core/perf/operators/throw.js', 438, 436 ]
46859 silly gunzTarPerm extractEntry src/core/perf/operators/distinctuntilchanged.js
46860 silly gunzTarPerm modified mode [ 'src/core/perf/operators/distinctuntilchanged.js', 438, 436 ]
46861 silly gunzTarPerm extractEntry src/core/perf/operators/toarray.js
46862 silly gunzTarPerm modified mode [ 'src/core/perf/operators/toarray.js', 438, 436 ]
46863 silly gunzTarPerm extractEntry src/core/perf/operators/concat.js
46864 silly gunzTarPerm modified mode [ 'src/core/perf/operators/concat.js', 438, 436 ]
46865 silly gunzTarPerm extractEntry src/core/perf/operators/zip.js
46866 silly gunzTarPerm modified mode [ 'src/core/perf/operators/zip.js', 438, 436 ]
46867 silly gunzTarPerm extractEntry src/core/perf/operators/never.js
46868 silly gunzTarPerm modified mode [ 'src/core/perf/operators/never.js', 438, 436 ]
46869 silly gunzTarPerm extractEntry src/core/testing/coldobservable.js
46870 silly gunzTarPerm modified mode [ 'src/core/testing/coldobservable.js', 438, 436 ]
46871 silly gunzTarPerm extractEntry src/core/testing/hotobservable.js
46872 silly gunzTarPerm modified mode [ 'src/core/testing/hotobservable.js', 438, 436 ]
46873 silly gunzTarPerm extractEntry src/core/testing/mockdisposable.js
46874 silly gunzTarPerm modified mode [ 'src/core/testing/mockdisposable.js', 438, 436 ]
46875 silly gunzTarPerm extractEntry src/core/testing/mockobserver.js
46876 silly gunzTarPerm modified mode [ 'src/core/testing/mockobserver.js', 438, 436 ]
46877 silly gunzTarPerm extractEntry src/core/testing/mockpromise.js
46878 silly gunzTarPerm modified mode [ 'src/core/testing/mockpromise.js', 438, 436 ]
46879 silly gunzTarPerm extractEntry src/core/testing/reactivetest.js
46880 silly gunzTarPerm modified mode [ 'src/core/testing/reactivetest.js', 438, 436 ]
46881 silly gunzTarPerm extractEntry src/core/testing/recorded.js
46882 silly gunzTarPerm modified mode [ 'src/core/testing/recorded.js', 438, 436 ]
46883 silly gunzTarPerm extractEntry src/core/testing/subscription.js
46884 silly gunzTarPerm modified mode [ 'src/core/testing/subscription.js', 438, 436 ]
46885 silly gunzTarPerm extractEntry src/core/testing/testscheduler.js
46886 silly gunzTarPerm modified mode [ 'src/core/testing/testscheduler.js', 438, 436 ]
46887 silly gunzTarPerm extractEntry src/core/subjects/anonymoussubject.js
46888 silly gunzTarPerm modified mode [ 'src/core/subjects/anonymoussubject.js', 438, 436 ]
46889 silly gunzTarPerm extractEntry src/core/subjects/asyncsubject.js
46890 silly gunzTarPerm modified mode [ 'src/core/subjects/asyncsubject.js', 438, 436 ]
46891 silly gunzTarPerm extractEntry src/core/subjects/behaviorsubject.js
46892 silly gunzTarPerm modified mode [ 'src/core/subjects/behaviorsubject.js', 438, 436 ]
46893 silly gunzTarPerm extractEntry src/core/subjects/innersubscription.js
46894 silly gunzTarPerm modified mode [ 'src/core/subjects/innersubscription.js', 438, 436 ]
46895 silly gunzTarPerm extractEntry src/core/subjects/replaysubject.js
46896 silly gunzTarPerm modified mode [ 'src/core/subjects/replaysubject.js', 438, 436 ]
46897 silly gunzTarPerm extractEntry src/core/subjects/subject.js
46898 silly gunzTarPerm modified mode [ 'src/core/subjects/subject.js', 438, 436 ]
46899 silly gunzTarPerm extractEntry src/core/joins/activeplan.js
46900 silly gunzTarPerm modified mode [ 'src/core/joins/activeplan.js', 438, 436 ]
46901 silly gunzTarPerm extractEntry src/core/joins/joinobserver.js
46902 silly gunzTarPerm modified mode [ 'src/core/joins/joinobserver.js', 438, 436 ]
46903 silly gunzTarPerm extractEntry src/core/joins/pattern.js
46904 silly gunzTarPerm modified mode [ 'src/core/joins/pattern.js', 438, 436 ]
46905 silly gunzTarPerm extractEntry src/core/joins/plan.js
46906 silly gunzTarPerm modified mode [ 'src/core/joins/plan.js', 438, 436 ]
46907 silly gunzTarPerm extractEntry ts/rx.binding.d.ts
46908 silly gunzTarPerm modified mode [ 'ts/rx.binding.d.ts', 438, 436 ]
46909 silly gunzTarPerm extractEntry ts/rx-lite.d.ts
46910 silly gunzTarPerm modified mode [ 'ts/rx-lite.d.ts', 438, 436 ]
46911 silly gunzTarPerm extractEntry ts/rx.all.d.ts
46912 silly gunzTarPerm modified mode [ 'ts/rx.all.d.ts', 438, 436 ]
46913 silly gunzTarPerm extractEntry ts/rx.async-lite.d.ts
46914 silly gunzTarPerm modified mode [ 'ts/rx.async-lite.d.ts', 438, 436 ]
46915 silly gunzTarPerm extractEntry ts/rx.async-tests.ts
46916 silly gunzTarPerm modified mode [ 'ts/rx.async-tests.ts', 438, 436 ]
46917 silly gunzTarPerm extractEntry ts/rx.async.d.ts
46918 silly gunzTarPerm modified mode [ 'ts/rx.async.d.ts', 438, 436 ]
46919 silly gunzTarPerm extractEntry ts/rx.backpressure-lite.d.ts
46920 silly gunzTarPerm modified mode [ 'ts/rx.backpressure-lite.d.ts', 438, 436 ]
46921 silly gunzTarPerm extractEntry ts/rx.backpressure-tests.ts
46922 silly gunzTarPerm modified mode [ 'ts/rx.backpressure-tests.ts', 438, 436 ]
46923 silly gunzTarPerm extractEntry ts/rx.backpressure.d.ts
46924 silly gunzTarPerm modified mode [ 'ts/rx.backpressure.d.ts', 438, 436 ]
46925 silly gunzTarPerm extractEntry ts/rx.binding-lite.d.ts
46926 silly gunzTarPerm modified mode [ 'ts/rx.binding-lite.d.ts', 438, 436 ]
46927 silly gunzTarPerm extractEntry ts/rx.aggregates.d.ts
46928 silly gunzTarPerm modified mode [ 'ts/rx.aggregates.d.ts', 438, 436 ]
46929 silly gunzTarPerm extractEntry ts/rx.coincidence-lite.d.ts
46930 silly gunzTarPerm modified mode [ 'ts/rx.coincidence-lite.d.ts', 438, 436 ]
46931 silly gunzTarPerm extractEntry ts/rx.coincidence.d.ts
46932 silly gunzTarPerm modified mode [ 'ts/rx.coincidence.d.ts', 438, 436 ]
46933 silly gunzTarPerm extractEntry ts/rx.d.ts
46934 silly gunzTarPerm modified mode [ 'ts/rx.d.ts', 438, 436 ]
46935 silly gunzTarPerm extractEntry ts/rx.experimental.d.ts
46936 silly gunzTarPerm modified mode [ 'ts/rx.experimental.d.ts', 438, 436 ]
46937 silly gunzTarPerm extractEntry ts/rx.joinpatterns.d.ts
46938 silly gunzTarPerm modified mode [ 'ts/rx.joinpatterns.d.ts', 438, 436 ]
46939 silly gunzTarPerm extractEntry ts/rx.lite.d.ts
46940 silly gunzTarPerm modified mode [ 'ts/rx.lite.d.ts', 438, 436 ]
46941 silly gunzTarPerm extractEntry ts/rx.testing.d.ts
46942 silly gunzTarPerm modified mode [ 'ts/rx.testing.d.ts', 438, 436 ]
46943 silly gunzTarPerm extractEntry ts/rx.time-lite.d.ts
46944 silly gunzTarPerm modified mode [ 'ts/rx.time-lite.d.ts', 438, 436 ]
46945 silly gunzTarPerm extractEntry ts/rx.time.d.ts
46946 silly gunzTarPerm modified mode [ 'ts/rx.time.d.ts', 438, 436 ]
46947 silly gunzTarPerm extractEntry ts/rx.virtualtime.d.ts
46948 silly gunzTarPerm modified mode [ 'ts/rx.virtualtime.d.ts', 438, 436 ]
46949 silly cache afterAdd es5-ext@0.10.7
46950 verbose afterAdd /home/lukas/.npm/es5-ext/0.10.7/package/package.json not in flight; writing
46951 silly cache afterAdd es5-ext@0.10.7
46952 verbose afterAdd /home/lukas/.npm/es5-ext/0.10.7/package/package.json already in flight; not writing
46953 verbose afterAdd /home/lukas/.npm/es5-ext/0.10.7/package/package.json written
46954 silly install resolved [ { name: 'd',
46954 silly install resolved version: '0.1.1',
46954 silly install resolved description: 'Property descriptor factory',
46954 silly install resolved author:
46954 silly install resolved { name: 'Mariusz Nowak',
46954 silly install resolved email: 'medyk@medikoo.com',
46954 silly install resolved url: 'http://www.medikoo.com/' },
46954 silly install resolved scripts: { test: 'node node_modules/tad/bin/tad' },
46954 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/d.git' },
46954 silly install resolved keywords:
46954 silly install resolved [ 'descriptor',
46954 silly install resolved 'es',
46954 silly install resolved 'ecmascript',
46954 silly install resolved 'ecma',
46954 silly install resolved 'property',
46954 silly install resolved 'descriptors',
46954 silly install resolved 'meta',
46954 silly install resolved 'properties' ],
46954 silly install resolved dependencies: { 'es5-ext': '~0.10.2' },
46954 silly install resolved devDependencies: { tad: '~0.1.21' },
46954 silly install resolved license: 'MIT',
46954 silly install resolved readme: '# D - Property descriptor factory\n\n_Originally derived from [es5-ext](https://github.com/medikoo/es5-ext) package._\n\nDefining properties with descriptors is very verbose:\n\n```javascript\nvar Account = function () {};\nObject.defineProperties(Account.prototype, {\n deposit: { value: function () {\n /* ... */\n }, configurable: true, enumerable: false, writable: true },\n whithdraw: { value: function () {\n /* ... */\n }, configurable: true, enumerable: false, writable: true },\n balance: { get: function () {\n /* ... */\n }, configurable: true, enumerable: false }\n});\n```\n\nD cuts that to:\n\n```javascript\nvar d = require(\'d\');\n\nvar Account = function () {};\nObject.defineProperties(Account.prototype, {\n deposit: d(function () {\n /* ... */\n }),\n whithdraw: d(function () {\n /* ... */\n }),\n balance: d.gs(function () {\n /* ... */\n })\n});\n```\n\nBy default, created descriptor follow characteristics of native ES5 properties, and defines values as:\n\n```javascript\n{ configurable: true, enumerable: false, writable: true }\n```\n\nYou can overwrite it by preceding _value_ argument with instruction:\n```javascript\nd(\'c\', value); // { configurable: true, enumerable: false, writable: false }\nd(\'ce\', value); // { configurable: true, enumerable: true, writable: false }\nd(\'e\', value); // { configurable: false, enumerable: true, writable: false }\n\n// Same way for get/set:\nd.gs(\'e\', value); // { configurable: false, enumerable: true }\n```\n\n### Other utilities\n\n#### autoBind(obj, props) _(d/auto-bind)_\n\nDefine methods which will be automatically bound to its instances\n\n```javascript\nvar d = require(\'d\');\nvar autoBind = require(\'d/auto-bind\');\n\nvar Foo = function () { this._count = 0; };\nautoBind(Foo.prototype, {\n increment: d(function () { ++this._count; });\n});\n\nvar foo = new Foo();\n\n// Increment foo counter on each domEl click\ndomEl.addEventListener(\'click\', foo.increment, false);\n```\n\n#### lazy(obj, props) _(d/lazy)_\n\nDefine lazy properties, which will be resolved on first access\n\n```javascript\nvar d = require(\'d\');\nvar lazy = require(\'d/lazy\');\n\nvar Foo = function () {};\nlazy(Foo.prototype, {\n items: d(function () { return []; })\n});\n\nvar foo = new Foo();\nfoo.items.push(1, 2); // foo.items array created\n```\n\n## Installation\n### NPM\n\nIn your project path:\n\n\t$ npm install d\n\n### Browser\n\nYou can easily bundle _D_ for browser with [modules-webmake](https://github.com/medikoo/modules-webmake)\n\n## Tests [![Build Status](https://travis-ci.org/medikoo/d.png)](https://travis-ci.org/medikoo/d)\n\n\t$ npm test\n',
46954 silly install resolved readmeFilename: 'README.md',
46954 silly install resolved bugs: { url: 'https://github.com/medikoo/d/issues' },
46954 silly install resolved homepage: 'https://github.com/medikoo/d#readme',
46954 silly install resolved _id: 'd@0.1.1',
46954 silly install resolved _shasum: 'da184c535d18d8ee7ba2aa229b914009fae11309',
46954 silly install resolved _resolved: 'https://registry.npmjs.org/d/-/d-0.1.1.tgz',
46954 silly install resolved _from: 'https://registry.npmjs.org/d/-/d-0.1.1.tgz' },
46954 silly install resolved { name: 'es6-symbol',
46954 silly install resolved version: '2.0.1',
46954 silly install resolved description: 'ECMAScript6 Symbol polyfill',
46954 silly install resolved author:
46954 silly install resolved { name: 'Mariusz Nowak',
46954 silly install resolved email: 'medyk@medikoo.com',
46954 silly install resolved url: 'http://www.medikoo.com/' },
46954 silly install resolved keywords: [ 'symbol', 'private', 'property', 'es6', 'ecmascript', 'harmony' ],
46954 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/es6-symbol.git' },
46954 silly install resolved dependencies: { d: '~0.1.1', 'es5-ext': '~0.10.5' },
46954 silly install resolved devDependencies:
46954 silly install resolved { tad: '~0.2.1',
46954 silly install resolved xlint: '~0.2.2',
46954 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46954 silly install resolved scripts:
46954 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46954 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46954 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46954 silly install resolved license: 'MIT',
46954 silly install resolved readme: '# es6-symbol\n## ECMAScript 6 Symbol polyfill\n\nFor more information about symbols see following links\n- [Symbols in ECMAScript 6 by Axel Rauschmayer](http://www.2ality.com/2014/12/es6-symbols.html)\n- [MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol)\n- [Specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-constructor)\n\n### Limitations\n\nUnderneath it uses real string property names which can easily be retrieved, however accidental collision with other property names is unlikely.\n\n### Usage\n\nIf you\'d like to use native version when it exists and fallback to polyfill if it doesn\'t (but without implementing `Symbol` on global scope), do:\n\n```javascript\nvar Symbol = require(\'es6-symbol\');\n```\n\nIf you want to make sure your environment implements `Symbol`, do:\n\n```javascript\nrequire(\'es6-symbol/implement\');\n```\n\nIf you strictly want to use polyfill even if native `Symbol` exists (hard to find a good reason for that), do:\n\n```javascript\nvar Symbol = require(\'es6-symbol/polyfill\');\n```\n\n#### API\n\nBest is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects). Still if you want quick look, follow examples:\n\n```javascript\nvar Symbol = require(\'es6-symbol\');\n\nvar symbol = Symbol(\'My custom symbol\');\nvar x = {};\n\nx[symbol] = \'foo\';\nconsole.log(x[symbol]); \'foo\'\n\n// Detect iterable:\nvar iterator, result;\nif (possiblyIterable[Symbol.iterator]) {\n iterator = possiblyIterable[Symbol.iterator]();\n result = iterator.next();\n while(!result.done) {\n console.log(result.value);\n result = iterator.next();\n }\n}\n```\n\n### Installation\n#### NPM\n\nIn your project path:\n\n\t$ npm install es6-symbol\n\n##### Browser\n\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n## Tests [![Build Status](https://travis-ci.org/medikoo/es6-symbol.png)](https://travis-ci.org/medikoo/es6-symbol)\n\n\t$ npm test\n',
46954 silly install resolved readmeFilename: 'README.md',
46954 silly install resolved bugs: { url: 'https://github.com/medikoo/es6-symbol/issues' },
46954 silly install resolved homepage: 'https://github.com/medikoo/es6-symbol#readme',
46954 silly install resolved _id: 'es6-symbol@2.0.1',
46954 silly install resolved _shasum: '761b5c67cfd4f1d18afb234f691d678682cb3bf3',
46954 silly install resolved _resolved: 'https://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz',
46954 silly install resolved _from: 'https://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz' },
46954 silly install resolved { name: 'es6-iterator',
46954 silly install resolved version: '0.1.3',
46954 silly install resolved description: 'Iterator abstraction based on ES6 specification',
46954 silly install resolved author:
46954 silly install resolved { name: 'Mariusz Nowak',
46954 silly install resolved email: 'medyk@medikoo.com',
46954 silly install resolved url: 'http://www.medikoo.com/' },
46954 silly install resolved keywords: [ 'iterator', 'array', 'list', 'set', 'map', 'generator' ],
46954 silly install resolved repository:
46954 silly install resolved { type: 'git',
46954 silly install resolved url: 'git://github.com/medikoo/es6-iterator.git' },
46954 silly install resolved dependencies: { d: '~0.1.1', 'es5-ext': '~0.10.5', 'es6-symbol': '~2.0.1' },
46954 silly install resolved devDependencies:
46954 silly install resolved { 'event-emitter': '~0.3.3',
46954 silly install resolved tad: '~0.2.1',
46954 silly install resolved xlint: '~0.2.2',
46954 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46954 silly install resolved scripts:
46954 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46954 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46954 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46954 silly install resolved license: 'MIT',
46954 silly install resolved readme: '# es6-iterator\n## ECMAScript 6 Iterator interface\n\n### Installation\n\n\t$ npm install es6-iterator\n\t\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n## API\n\n### Constructors\n\n#### Iterator(list) _(es6-iterator)_\n\nAbstract Iterator interface. Meant for extensions and not to be used on its own.\n\nAccepts any _list_ object (technically object with numeric _length_ property).\n\n_Mind it doesn\'t iterate strings properly, for that use dedicated [StringIterator](#string-iterator)_\n\n```javascript\nvar Iterator = require(\'es6-iterator\')\nvar iterator = new Iterator([1, 2, 3]);\n\niterator.next(); // { value: 1, done: false }\niterator.next(); // { value: 2, done: false }\niterator.next(); // { value: 3, done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n\n#### ArrayIterator(arrayLike[, kind]) _(es6-iterator/array)_\n\nDedicated for arrays and array-likes. Supports three iteration kinds:\n* __value__ _(default)_ - Iterates values\n* __key__ - Iterates indexes\n* __key+value__ - Iterates keys and indexes, each iteration value is in _[key, value]_ form.\n\n\n```javascript\nvar ArrayIterator = require(\'es6-iterator/array\')\nvar iterator = new ArrayIterator([1, 2, 3], \'key+value\');\n\niterator.next(); // { value: [0, 1], done: false }\niterator.next(); // { value: [1, 2], done: false }\niterator.next(); // { value: [2, 3], done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\nMay also be used for _arguments_ objects:\n\n```javascript\n(function () {\n var iterator = new ArrayIterator(arguments);\n\n iterator.next(); // { value: 1, done: false }\n iterator.next(); // { value: 2, done: false }\n iterator.next(); // { value: 3, done: false }\n iterator.next(); // { value: undefined, done: true }\n}(1, 2, 3));\n```\n\n#### StringIterator(str) _(es6-iterator/string)_\n\nAssures proper iteration over unicode symbols. \nSee: http://mathiasbynens.be/notes/javascript-unicode\n\n```javascript\nvar StringIterator = require(\'es6-iterator/string\');\nvar iterator = new StringIterator(\'f🙈o🙉o🙊\');\n\niterator.next(); // { value: \'f\', done: false }\niterator.next(); // { value: \'🙈\', done: false }\niterator.next(); // { value: \'o\', done: false }\niterator.next(); // { value: \'🙉\', done: false }\niterator.next(); // { value: \'o\', done: false }\niterator.next(); // { value: \'🙊\', done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n### Function utilities\n\n#### forOf(iterable, callback[, thisArg]) _(es6-iterator/for-of)_\n\nPolyfill for ECMAScript 6 [`for...of`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) statement.\n\n```\nvar forOf = require(\'es6-iterator/for-of\');\nvar result = [];\n\nforOf(\'🙈🙉🙊\', function (monkey) { result.push(monkey); });\nconsole.log(result); // [\'🙈\', \'🙉\', \'🙊\'];\n```\n\nOptionally you can break iteration at any point:\n\n```javascript\nvar result = [];\n\nforOf([1,2,3,4]\', function (val, doBreak) {\n result.push(monkey);\n if (val >= 3) doBreak();\n});\nconsole.log(result); // [1, 2, 3];\n```\n\n#### get(obj) _(es6-iterator/get)_\n\nReturn iterator for any iterable object.\n\n```javascript\nvar getIterator = require(\'es6-iterator/get\');\nvar iterator = get([1,2,3]);\n\niterator.next(); // { value: 1, done: false }\niterator.next(); // { value: 2, done: false }\niterator.next(); // { value: 3, done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n#### isIterable(obj) _(es6-iterator/is-iterable)_\n\nWhether _obj_ is iterable\n\n```javascript\nvar isIterable = require(\'es6-iterator/is-iterable\');\n\nisIterable(null); // false\nisIterable(true); // false\nisIterable(\'str\'); // true\nisIterable([\'a\', \'r\', \'r\']); // true\nisIterable(new ArrayIterator([])); // true\n```\n\n#### validIterable(obj) _(es6-iterator/valid-iterable)_\n\nIf _obj_ is an iterable it is returned. Otherwise _TypeError_ is thrown.\n\n### Method extensions\n\n#### iterator.chain(iterator1[, …iteratorn]) _(es6-iterator/#/chain)_\n\nChain multiple iterators into one.\n\n### Tests [![Build Status](https://travis-ci.org/medikoo/es6-iterator.png)](https://travis-ci.org/medikoo/es6-iterator)\n\n\t$ npm test\n',
46954 silly install resolved readmeFilename: 'README.md',
46954 silly install resolved bugs: { url: 'https://github.com/medikoo/es6-iterator/issues' },
46954 silly install resolved homepage: 'https://github.com/medikoo/es6-iterator#readme',
46954 silly install resolved _id: 'es6-iterator@0.1.3',
46954 silly install resolved _shasum: 'd6f58b8c4fc413c249b4baa19768f8e4d7c8944e',
46954 silly install resolved _resolved: 'https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz',
46954 silly install resolved _from: 'https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz' },
46954 silly install resolved { name: 'es5-ext',
46954 silly install resolved version: '0.10.7',
46954 silly install resolved description: 'ECMAScript 5 extensions and ES6 shims',
46954 silly install resolved author:
46954 silly install resolved { name: 'Mariusz Nowak',
46954 silly install resolved email: 'medyk@medikoo.com',
46954 silly install resolved url: 'http://www.medikoo.com/' },
46954 silly install resolved keywords:
46954 silly install resolved [ 'ecmascript',
46954 silly install resolved 'ecmascript5',
46954 silly install resolved 'ecmascript6',
46954 silly install resolved 'es5',
46954 silly install resolved 'es6',
46954 silly install resolved 'extensions',
46954 silly install resolved 'ext',
46954 silly install resolved 'addons',
46954 silly install resolved 'extras',
46954 silly install resolved 'harmony',
46954 silly install resolved 'javascript',
46954 silly install resolved 'polyfill',
46954 silly install resolved 'shim',
46954 silly install resolved 'util',
46954 silly install resolved 'utils',
46954 silly install resolved 'utilities' ],
46954 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/es5-ext.git' },
46954 silly install resolved dependencies: { 'es6-iterator': '~0.1.3', 'es6-symbol': '~2.0.1' },
46954 silly install resolved devDependencies:
46954 silly install resolved { tad: '~0.2.2',
46954 silly install resolved xlint: '~0.2.2',
46954 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46954 silly install resolved scripts:
46954 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46954 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46954 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46954 silly install resolved license: 'MIT',
46954 silly install resolved readme: '# es5-ext\n## ECMAScript 5 extensions\n### (with respect to ECMAScript 6 standard)\n\nShims for upcoming ES6 standard and other goodies implemented strictly with ECMAScript conventions in mind.\n\nIt\'s designed to be used in compliant ECMAScript 5 or ECMAScript 6 environments. Older environments are not supported, although most of the features should work with correct ECMAScript 5 shim on board.\n\nWhen used in ECMAScript 6 environment, native implementation (if valid) takes precedence over shims.\n\n### Installation\n\n\t$ npm install es5-ext\n\t\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n### Usage\n\n#### ECMAScript 6 features\n\nYou can force ES6 features to be implemented in your environment, e.g. following will assign `from` function to `Array` (only if it\'s not implemented already).\n\n```javascript\nrequire(\'es5-ext/array/from/implement\');\nArray.from(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\nYou can also access shims directly, without fixing native objects. Following will return native `Array.from` if it\'s available and fallback to shim if it\'s not.\n\n```javascript\nvar aFrom = require(\'es5-ext/array/from\');\naFrom(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\nIf you want to use shim unconditionally (even if native implementation exists) do:\n\n```javascript\nvar aFrom = require(\'es5-ext/array/from/shim\');\naFrom(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\n##### List of ES6 shims\n\nIt\'s about properties introduced with ES6 and those that have been updated in new spec.\n\n- `Array.from` -> `require(\'es5-ext/array/from\')`\n- `Array.of` -> `require(\'es5-ext/array/of\')`\n- `Array.prototype.concat` -> `require(\'es5-ext/array/#/concat\')`\n- `Array.prototype.copyWithin` -> `require(\'es5-ext/array/#/copy-within\')`\n- `Array.prototype.entries` -> `require(\'es5-ext/array/#/entries\')`\n- `Array.prototype.fill` -> `require(\'es5-ext/array/#/fill\')`\n- `Array.prototype.filter` -> `require(\'es5-ext/array/#/filter\')`\n- `Array.prototype.find` -> `require(\'es5-ext/array/#/find\')`\n- `Array.prototype.findIndex` -> `require(\'es5-ext/array/#/find-index\')`\n- `Array.prototype.keys` -> `require(\'es5-ext/array/#/keys\')`\n- `Array.prototype.map` -> `require(\'es5-ext/array/#/map\')`\n- `Array.prototype.slice` -> `require(\'es5-ext/array/#/slice\')`\n- `Array.prototype.splice` -> `require(\'es5-ext/array/#/splice\')`\n- `Array.prototype.values` -> `require(\'es5-ext/array/#/values\')`\n- `Array.prototype[@@iterator]` -> `require(\'es5-ext/array/#/@@iterator\')`\n- `Math.acosh` -> `require(\'es5-ext/math/acosh\')`\n- `Math.asinh` -> `require(\'es5-ext/math/asinh\')`\n- `Math.atanh` -> `require(\'es5-ext/math/atanh\')`\n- `Math.cbrt` -> `require(\'es5-ext/math/cbrt\')`\n- `Math.clz32` -> `require(\'es5-ext/math/clz32\')`\n- `Math.cosh` -> `require(\'es5-ext/math/cosh\')`\n- `Math.exmp1` -> `require(\'es5-ext/math/expm1\')`\n- `Math.fround` -> `require(\'es5-ext/math/fround\')`\n- `Math.hypot` -> `require(\'es5-ext/math/hypot\')`\n- `Math.imul` -> `require(\'es5-ext/math/imul\')`\n- `Math.log1p` -> `require(\'es5-ext/math/log1p\')`\n- `Math.log2` -> `require(\'es5-ext/math/log2\')`\n- `Math.log10` -> `require(\'es5-ext/math/log10\')`\n- `Math.sign` -> `require(\'es5-ext/math/sign\')`\n- `Math.signh` -> `require(\'es5-ext/math/signh\')`\n- `Math.tanh` -> `require(\'es5-ext/math/tanh\')`\n- `Math.trunc` -> `require(\'es5-ext/math/trunc\')`\n- `Number.EPSILON` -> `require(\'es5-ext/number/epsilon\')`\n- `Number.MAX_SAFE_INTEGER` -> `require(\'es5-ext/number/max-safe-integer\')`\n- `Number.MIN_SAFE_INTEGER` -> `require(\'es5-ext/number/min-safe-integer\')`\n- `Number.isFinite` -> `require(\'es5-ext/number/is-finite\')`\n- `Number.isInteger` -> `require(\'es5-ext/number/is-integer\')`\n- `Number.isNaN` -> `require(\'es5-ext/number/is-nan\')`\n- `Number.isSafeInteger` -> `require(\'es5-ext/number/is-safe-integer\')`\n- `Object.assign` -> `require(\'es5-ext/object/assign\')`\n- `Object.keys` -> `require(\'es5-ext/object/keys\')`\n- `Object.setPrototypeOf` -> `require(\'es5-ext/object/set-prototype-of\')`\n- `RegExp.prototype.match` -> `require(\'es5-ext/reg-exp/#/match\')`\n- `RegExp.prototype.replace` -> `require(\'es5-ext/reg-exp/#/replace\')`\n- `RegExp.prototype.search` -> `require(\'es5-ext/reg-exp/#/search\')`\n- `RegExp.prototype.split` -> `require(\'es5-ext/reg-exp/#/split\')`\n- `RegExp.prototype.sticky` -> Implement with `require(\'es5-ext/reg-exp/#/sticky/implement\')`, use as function with `require(\'es5-ext/reg-exp/#/is-sticky\')`\n- `RegExp.prototype.unicode` -> Implement with `require(\'es5-ext/reg-exp/#/unicode/implement\')`, use as function with `require(\'es5-ext/reg-exp/#/is-unicode\')`\n- `String.fromCodePoint` -> `require(\'es5-ext/string/from-code-point\')`\n- `String.raw` -> `require(\'es5-ext/string/raw\')`\n- `String.prototype.codePointAt` -> `require(\'es5-ext/string/#/code-point-at\')`\n- `String.prototype.contains` -> `require(\'es5-ext/string/#/contains\')`\n- `String.prototype.endsWith` -> `require(\'es5-ext/string/#/ends-with\')`\n- `String.prototype.normalize` -> `require(\'es5-ext/string/#/normalize\')`\n- `String.prototype.repeat` -> `require(\'es5-ext/string/#/repeat\')`\n- `String.prototype.startsWith` -> `require(\'es5-ext/string/#/starts-with\')`\n- `String.prototype[@@iterator]` -> `require(\'es5-ext/string/#/@@iterator\')`\n\n#### Non ECMAScript standard features\n\n__es5-ext__ provides also other utils, and implements them as if they were proposed for a standard. It mostly offers methods (not functions) which can directly be assigned to native prototypes:\n\n```javascript\nObject.defineProperty(Function.prototype, \'partial\', { value: require(\'es5-ext/function/#/partial\'),\n configurable: true, enumerable: false, writable: true });\nObject.defineProperty(Array.prototype, \'flatten\', { value: require(\'es5-ext/array/#/flatten\'),\n configurable: true, enumerable: false, writable: true });\nObject.defineProperty(String.prototype, \'capitalize\', { value: require(\'es5-ext/string/#/capitalize\'),\n configurable: true, enumerable: false, writable: true });\n```\n\nSee [es5-extend](https://github.com/wookieb/es5-extend#es5-extend), a great utility that automatically will extend natives for you. \n\n__Important:__ Remember to __not__ extend natives in scope of generic reusable packages (e.g. ones you intend to publish to npm). Extending natives is fine __only__ if you\'re the _owner_ of the global scope, so e.g. in final project you lead development of.\n\nWhen you\'re in situation when native extensions are not good idea, then you should use methods indirectly:\n\n\n```javascript\nvar flatten = require(\'es5-ext/array/#/flatten\');\n\nflatten.call([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nfor better convenience you can turn methods into functions:\n\n\n```javascript\nvar call = Function.prototype.call\nvar flatten = call.bind(require(\'es5-ext/array/#/flatten\'));\n\nflatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nYou can configure custom toolkit (like [underscorejs](http://underscorejs.org/)), and use it throughout your application\n\n```javascript\nvar util = {};\nutil.partial = call.bind(require(\'es5-ext/function/#/partial\'));\nutil.flatten = call.bind(require(\'es5-ext/array/#/flatten\'));\nutil.startsWith = call.bind(require(\'es5-ext/string/#/starts-with\'));\n\nutil.flatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nAs with native ones most methods are generic and can be run on any type of object.\n\n## API\n\n### Global extensions\n\n#### global _(es5-ext/global)_\n\nObject that represents global scope\n\n### Array Constructor extensions\n\n#### from(arrayLike[, mapFn[, thisArg]]) _(es5-ext/array/from)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.from). \nReturns array representation of _iterable_ or _arrayLike_. If _arrayLike_ is an instance of array, its copy is returned.\n\n#### generate([length[, …fill]]) _(es5-ext/array/generate)_\n\nGenerate an array of pre-given _length_ built of repeated arguments.\n\n#### isPlainArray(x) _(es5-ext/array/is-plain-array)_\n\nReturns true if object is plain array (not instance of one of the Array\'s extensions).\n\n#### of([…items]) _(es5-ext/array/of)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.of). \nCreate an array from given arguments.\n\n#### toArray(obj) _(es5-ext/array/to-array)_\n\nReturns array representation of `obj`. If `obj` is already an array, `obj` is returned back.\n\n#### validArray(obj) _(es5-ext/array/valid-array)_\n\nReturns `obj` if it\'s an array, otherwise throws `TypeError`\n\n### Array Prototype extensions\n\n#### arr.binarySearch(compareFn) _(es5-ext/array/#/binary-search)_\n\nIn __sorted__ list search for index of item for which _compareFn_ returns value closest to _0_. \nIt\'s variant of binary search algorithm\n\n#### arr.clear() _(es5-ext/array/#/clear)_\n\nClears the array\n\n#### arr.compact() _(es5-ext/array/#/compact)_\n\nReturns a copy of the context with all non-values (`null` or `undefined`) removed.\n\n#### arr.concat() _(es5-ext/array/#/concat)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.concat). \nES6\'s version of `concat`. Supports `isConcatSpreadable` symbol, and returns array of same type as the context.\n\n#### arr.contains(searchElement[, position]) _(es5-ext/array/#/contains)_\n\nWhether list contains the given value.\n\n#### arr.copyWithin(target, start[, end]) _(es5-ext/array/#/copy-within)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.copywithin). \n\n#### arr.diff(other) _(es5-ext/array/#/diff)_\n\nReturns the array of elements that are present in context list but not present in other list.\n\n#### arr.eIndexOf(searchElement[, fromIndex]) _(es5-ext/array/#/e-index-of)_\n\n_egal_ version of `indexOf` method. [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) logic is used for comparision\n\n#### arr.eLastIndexOf(searchElement[, fromIndex]) _(es5-ext/array/#/e-last-index-of)_\n\n_egal_ version of `lastIndexOf` method. [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) logic is used for comparision\n\n#### arr.entries() _(es5-ext/array/#/entries)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.entries). \nReturns iterator object, which traverses the array. Each value is represented with an array, where first value is an index and second is corresponding to index value.\n\n#### arr.exclusion([…lists]]) _(es5-ext/array/#/exclusion)_\n\nReturns the array of elements that are found only in one of the lists (either context list or list provided in arguments).\n\n#### arr.fill(value[, start, end]) _(es5-ext/array/#/fill)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.fill). \n\n#### arr.filter(callback[, thisArg]) _(es5-ext/array/#/filter)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.filter). \nES6\'s version of `filter`, returns array of same type as the context.\n\n#### arr.find(predicate[, thisArg]) _(es5-ext/array/#/find)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.find). \nReturn first element for which given function returns true\n\n#### arr.findIndex(predicate[, thisArg]) _(es5-ext/array/#/find-index)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.findindex). \nReturn first index for which given function returns true\n\n#### arr.first() _(es5-ext/array/#/first)_\n\nReturns value for first defined index\n\n#### arr.firstIndex() _(es5-ext/array/#/first-index)_\n\nReturns first declared index of the array\n\n#### arr.flatten() _(es5-ext/array/#/flatten)_\n\nReturns flattened version of the array\n\n#### arr.forEachRight(cb[, thisArg]) _(es5-ext/array/#/for-each-right)_\n\n`forEach` starting from last element\n\n#### arr.group(cb[, thisArg]) _(es5-ext/array/#/group)_\n\nGroup list elements by value returned by _cb_ function\n\n#### arr.indexesOf(searchElement[, fromIndex]) _(es5-ext/array/#/indexes-of)_\n\nReturns array of all indexes of given value\n\n#### arr.intersection([…lists]) _(es5-ext/array/#/intersection)_\n\nComputes the array of values that are the intersection of all lists (context list and lists given in arguments)\n\n#### arr.isCopy(other) _(es5-ext/array/#/is-copy)_\n\nReturns true if both context and _other_ lists have same content\n\n#### arr.isUniq() _(es5-ext/array/#/is-uniq)_\n\nReturns true if all values in array are unique\n\n#### arr.keys() _(es5-ext/array/#/keys)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.keys). \nReturns iterator object, which traverses all array indexes.\n\n#### arr.last() _(es5-ext/array/#/last)_\n\nReturns value of last defined index\n\n#### arr.lastIndex() _(es5-ext/array/#/last)_\n\nReturns last defined index of the array\n\n#### arr.map(callback[, thisArg]) _(es5-ext/array/#/map)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.map). \nES6\'s version of `map`, returns array of same type as the context.\n\n#### arr.remove(value[, …valuen]) _(es5-ext/array/#/remove)_\n\nRemove values from the array\n\n#### arr.separate(sep) _(es5-ext/array/#/separate)_\n\nReturns array with items separated with `sep` value\n\n#### arr.slice(callback[, thisArg]) _(es5-ext/array/#/slice)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.slice). \nES6\'s version of `slice`, returns array of same type as the context.\n\n#### arr.someRight(cb[, thisArg]) _(es5-ext/array/#/someRight)_\n\n`some` starting from last element\n\n#### arr.splice(callback[, thisArg]) _(es5-ext/array/#/splice)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.splice). \nES6\'s version of `splice`, returns array of same type as the context.\n\n#### arr.uniq() _(es5-ext/array/#/uniq)_\n\nReturns duplicate-free version of the array\n\n#### arr.values() _(es5-ext/array/#/values)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.values). \nReturns iterator object which traverses all array values.\n\n#### arr[@@iterator] _(es5-ext/array/#/@@iterator)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype-@@iterator). \nReturns iterator object which traverses all array values.\n\n### Boolean Constructor extensions\n\n#### isBoolean(x) _(es5-ext/boolean/is-boolean)_\n\nWhether value is boolean\n\n### Date Constructor extensions\n\n#### isDate(x) _(es5-ext/date/is-date)_\n\nWhether value is date instance\n\n#### validDate(x) _(es5-ext/date/valid-date)_\n\nIf given object is not date throw TypeError in other case return it.\n\n### Date Prototype extensions\n\n#### date.copy(date) _(es5-ext/date/#/copy)_\n\nReturns a copy of the date object\n\n#### date.daysInMonth() _(es5-ext/date/#/days-in-month)_\n\nReturns number of days of date\'s month\n\n#### date.floorDay() _(es5-ext/date/#/floor-day)_\n\nSets the date time to 00:00:00.000\n\n#### date.floorMonth() _(es5-ext/date/#/floor-month)_\n\nSets date day to 1 and date time to 00:00:00.000\n\n#### date.floorYear() _(es5-ext/date/#/floor-year)_\n\nSets date month to 0, day to 1 and date time to 00:00:00.000\n\n#### date.format(pattern) _(es5-ext/date/#/format)_\n\nFormats date up to given string. Supported patterns:\n\n* `%Y` - Year with century, 1999, 2003\n* `%y` - Year without century, 99, 03\n* `%m` - Month, 01..12\n* `%d` - Day of the month 01..31\n* `%H` - Hour (24-hour clock), 00..23\n* `%M` - Minute, 00..59\n* `%S` - Second, 00..59\n* `%L` - Milliseconds, 000..999\n\n### Error Constructor extensions\n\n#### custom(message/*, code, ext*/) _(es5-ext/error/custom)_\n\nCreates custom error object, optinally extended with `code` and other extension properties (provided with `ext` object) \n\n#### isError(x) _(es5-ext/error/is-error)_\n\nWhether value is an error (instance of `Error`). \n\n#### validError(x) _(es5-ext/error/valid-error)_\n\nIf given object is not error throw TypeError in other case return it.\n\n### Error Prototype extensions\n\n#### err.throw() _(es5-ext/error/#/throw)_\n\nThrows error\n\n### Function Constructor extensions\n\nSome of the functions were inspired by [Functional JavaScript](http://osteele.com/sources/javascript/functional/) project by Olivier Steele\n\n#### constant(x) _(es5-ext/function/constant)_\n\nReturns a constant function that returns pregiven argument\n\n_k(x)(y) =def x_\n\n#### identity(x) _(es5-ext/function/identity)_\n\nIdentity function. Returns first argument\n\n_i(x) =def x_\n\n#### invoke(name[, …args]) _(es5-ext/function/invoke)_\n\nReturns a function that takes an object as an argument, and applies object\'s\n_name_ method to arguments. \n_name_ can be name of the method or method itself.\n\n_invoke(name, …args)(object, …args2) =def object\\[name\\]\\(…args, …args2\\)_\n\n#### isArguments(x) _(es5-ext/function/is-arguments)_\n\nWhether value is arguments object\n\n#### isFunction(arg) _(es5-ext/function/is-function)_\n\nWether value is instance of function\n\n#### noop() _(es5-ext/function/noop)_\n\nNo operation function\n\n#### pluck(name) _(es5-ext/function/pluck)_\n\nReturns a function that takes an object, and returns the value of its _name_\nproperty\n\n_pluck(name)(obj) =def obj[name]_\n\n#### validFunction(arg) _(es5-ext/function/valid-function)_\n\nIf given object is not function throw TypeError in other case return it.\n\n### Function Prototype extensions\n\nSome of the methods were inspired by [Functional JavaScript](http://osteele.com/sources/javascript/functional/) project by Olivier Steele\n\n#### fn.compose([…fns]) _(es5-ext/function/#/compose)_\n\nApplies the functions in reverse argument-list order.\n\n_f1.compose(f2, f3, f4)(…args) =def f1(f2(f3(f4(…arg))))_\n\n#### fn.copy() _(es5-ext/function/#/copy)_\n\nProduces copy of given function\n\n#### fn.curry([n]) _(es5-ext/function/#/curry)_\n\nInvoking the function returned by this function only _n_ arguments are passed to the underlying function. If the underlying function is not saturated, the result is a function that passes all its arguments to the underlying function. \nIf _n_ is not provided then it defaults to context function length\n\n_f.curry(4)(arg1, arg2)(arg3)(arg4) =def f(arg1, args2, arg3, arg4)_\n\n#### fn.lock([…args]) _(es5-ext/function/#/lock)_\n\nReturns a function that applies the underlying function to _args_, and ignores its own arguments.\n\n_f.lock(…args)(…args2) =def f(…args)_\n\n_Named after it\'s counterpart in Google Closure_\n\n#### fn.not() _(es5-ext/function/#/not)_\n\nReturns a function that returns boolean negation of value returned by underlying function.\n\n_f.not()(…args) =def !f(…args)_\n\n#### fn.partial([…args]) _(es5-ext/function/#/partial)_\n\nReturns a function that when called will behave like context function called with initially passed arguments. If more arguments are suplilied, they are appended to initial args.\n\n_f.partial(…args1)(…args2) =def f(…args1, …args2)_\n\n#### fn.spread() _(es5-ext/function/#/spread)_\n\nReturns a function that applies underlying function with first list argument\n\n_f.match()(args) =def f.apply(null, args)_\n\n#### fn.toStringTokens() _(es5-ext/function/#/to-string-tokens)_\n\nSerializes function into two (arguments and body) string tokens. Result is plain object with `args` and `body` properties.\n\n### Math extensions\n\n#### acosh(x) _(es5-ext/math/acosh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.acosh). \n\n#### asinh(x) _(es5-ext/math/asinh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.asinh). \n\n#### atanh(x) _(es5-ext/math/atanh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.atanh). \n\n#### cbrt(x) _(es5-ext/math/cbrt)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.cbrt). \n\n#### clz32(x) _(es5-ext/math/clz32)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.clz32). \n\n#### cosh(x) _(es5-ext/math/cosh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.cosh). \n\n#### expm1(x) _(es5-ext/math/expm1)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.expm1). \n\n#### fround(x) _(es5-ext/math/fround)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.fround). \n\n#### hypot([…values]) _(es5-ext/math/hypot)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot). \n\n#### imul(x, y) _(es5-ext/math/imul)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.imul). \n\n#### log1p(x) _(es5-ext/math/log1p)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log1p). \n\n#### log2(x) _(es5-ext/math/log2)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log2). \n\n#### log10(x) _(es5-ext/math/log10)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log10). \n\n#### sign(x) _(es5-ext/math/sign)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.sign). \n\n#### sinh(x) _(es5-ext/math/sinh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.sinh). \n\n#### tanh(x) _(es5-ext/math/tanh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.tanh). \n\n#### trunc(x) _(es5-ext/math/trunc)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc). \n\n### Number Constructor extensions\n\n#### EPSILON _(es5-ext/number/epsilon)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.epsilon). \n\nThe difference between 1 and the smallest value greater than 1 that is representable as a Number value, which is approximately 2.2204460492503130808472633361816 x 10-16.\n\n#### isFinite(x) _(es5-ext/number/is-finite)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isfinite). \nWhether value is finite. Differs from global isNaN that it doesn\'t do type coercion.\n\n#### isInteger(x) _(es5-ext/number/is-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger). \nWhether value is integer.\n\n#### isNaN(x) _(es5-ext/number/is-nan)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan). \nWhether value is NaN. Differs from global isNaN that it doesn\'t do type coercion.\n\n#### isNumber(x) _(es5-ext/number/is-number)_\n\nWhether given value is number\n\n#### isSafeInteger(x) _(es5-ext/number/is-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.issafeinteger). \n\n#### MAX_SAFE_INTEGER _(es5-ext/number/max-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.maxsafeinteger). \nThe value of Number.MAX_SAFE_INTEGER is 9007199254740991.\n\n#### MIN_SAFE_INTEGER _(es5-ext/number/min-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.minsafeinteger). \nThe value of Number.MIN_SAFE_INTEGER is -9007199254740991 (253-1).\n\n#### toInteger(x) _(es5-ext/number/to-integer)_\n\nConverts value to integer\n\n#### toPosInteger(x) _(es5-ext/number/to-pos-integer)_\n\nConverts value to positive integer. If provided value is less than 0, then 0 is returned\n\n#### toUint32(x) _(es5-ext/number/to-uint32)_\n\nConverts value to unsigned 32 bit integer. This type is used for array lengths.\nSee: http://www.2ality.com/2012/02/js-integers.html\n\n### Number Prototype extensions\n\n#### num.pad(length[, precision]) _(es5-ext/number/#/pad)_\n\nPad given number with zeros. Returns string\n\n### Object Constructor extensions\n\n#### assign(target, source[, …sourcen]) _(es5-ext/object/assign)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign). \nExtend _target_ by enumerable own properties of other objects. If properties are already set on target object, they will be overwritten.\n\n#### clear(obj) _(es5-ext/object/clear)_\n\nRemove all enumerable own properties of the object\n\n#### compact(obj) _(es5-ext/object/compact)_\n\nReturns copy of the object with all enumerable properties that have no falsy values\n\n#### compare(obj1, obj2) _(es5-ext/object/compare)_\n\nUniversal cross-type compare function. To be used for e.g. array sort.\n\n#### copy(obj) _(es5-ext/object/copy)_\n\nReturns copy of the object with all enumerable properties.\n\n#### copyDeep(obj) _(es5-ext/object/copy-deep)_\n\nReturns deep copy of the object with all enumerable properties.\n\n#### count(obj) _(es5-ext/object/count)_\n\nCounts number of enumerable own properties on object\n\n#### create(obj[, properties]) _(es5-ext/object/create)_\n\n`Object.create` alternative that provides workaround for [V8 issue](http://code.google.com/p/v8/issues/detail?id=2804).\n\nWhen `null` is provided as a prototype, it\'s substituted with specially prepared object that derives from Object.prototype but has all Object.prototype properties shadowed with undefined.\n\nIt\'s quirky solution that allows us to have plain objects with no truthy properties but with turnable prototype.\n\nUse only for objects that you plan to switch prototypes of and be aware of limitations of this workaround.\n\n#### eq(x, y) _(es5-ext/object/eq)_\n\nWhether two values are equal, using [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) algorithm.\n\n#### every(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/every)_\n\nAnalogous to Array.prototype.every. Returns true if every key-value pair in this object satisfies the provided testing function. \nOptionally _compareFn_ can be provided which assures that keys are tested in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### filter(obj, cb[, thisArg]) _(es5-ext/object/filter)_\n\nAnalogous to Array.prototype.filter. Returns new object with properites for which _cb_ function returned truthy value.\n\n#### firstKey(obj) _(es5-ext/object/first-key)_\n\nReturns first enumerable key of the object, as keys are unordered by specification, it can be any key of an object.\n\n#### flatten(obj) _(es5-ext/object/flatten)_\n\nReturns new object, with flatten properties of input object\n\n_flatten({ a: { b: 1 }, c: { d: 1 } }) =def { b: 1, d: 1 }_\n\n#### forEach(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/for-each)_\n\nAnalogous to Array.prototype.forEach. Calls a function for each key-value pair found in object\nOptionally _compareFn_ can be provided which assures that properties are iterated in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### getPropertyNames() _(es5-ext/object/get-property-names)_\n\nGet all (not just own) property names of the object\n\n#### is(x, y) _(es5-ext/object/is)_\n\nWhether two values are equal, using [_SameValue_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) algorithm.\n\n#### isArrayLike(x) _(es5-ext/object/is-array-like)_\n\nWhether object is array-like object\n\n#### isCopy(x, y) _(es5-ext/object/is-copy)_\n\nTwo values are considered a copy of same value when all of their own enumerable properties have same values.\n\n#### isCopyDeep(x, y) _(es5-ext/object/is-copy-deep)_\n\nDeep comparision of objects\n\n#### isEmpty(obj) _(es5-ext/object/is-empty)_\n\nTrue if object doesn\'t have any own enumerable property\n\n#### isObject(arg) _(es5-ext/object/is-object)_\n\nWhether value is not primitive\n\n#### isPlainObject(arg) _(es5-ext/object/is-plain-object)_\n\nWhether object is plain object, its protototype should be Object.prototype and it cannot be host object.\n\n#### keyOf(obj, searchValue) _(es5-ext/object/key-of)_\n\nSearch object for value\n\n#### keys(obj) _(es5-ext/object/keys)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.keys). \nES6\'s version of `keys`, doesn\'t throw on primitive input\n\n#### map(obj, cb[, thisArg]) _(es5-ext/object/map)_\n\nAnalogous to Array.prototype.map. Creates a new object with properties which values are results of calling a provided function on every key-value pair in this object.\n\n#### mapKeys(obj, cb[, thisArg]) _(es5-ext/object/map-keys)_\n\nCreate new object with same values, but remapped keys\n\n#### mixin(target, source) _(es5-ext/object/mixin)_\n\nExtend _target_ by all own properties of other objects. Properties found in both objects will be overwritten (unless they\'re not configurable and cannot be overwritten).\n_It was for a moment part of ECMAScript 6 draft._\n\n#### mixinPrototypes(target, …source]) _(es5-ext/object/mixin-prototypes)_\n\nExtends _target_, with all source and source\'s prototype properties.\nUseful as an alternative for `setPrototypeOf` in environments in which it cannot be shimmed (no `__proto__` support).\n\n#### normalizeOptions(options) _(es5-ext/object/normalize-options)_\n\nNormalizes options object into flat plain object. \n\nUseful for functions in which we either need to keep options object for future reference or need to modify it for internal use.\n\n- It never returns input `options` object back (always a copy is created)\n- `options` can be undefined in such case empty plain object is returned.\n- Copies all enumerable properties found down prototype chain.\n\n#### primitiveSet([…names]) _(es5-ext/object/primitive-set)_\n\nCreates `null` prototype based plain object, and sets on it all property names provided in arguments to true.\n\n#### safeTraverse(obj[, …names]) _(es5-ext/object/safe-traverse)_\n\nSafe navigation of object properties. See http://wiki.ecmascript.org/doku.php?id=strawman:existential_operator\n\n#### serialize(value) _(es5-ext/object/serialize)_\n\nSerialize value into string. Differs from [JSON.stringify](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) that it serializes also dates, functions and regular expresssions.\n\n#### setPrototypeOf(object, proto) _(es5-ext/object/set-prototype-of)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.setprototypeof). \nIf native version is not provided, it depends on existence of `__proto__` functionality, if it\'s missing, `null` instead of function is exposed.\n\n#### some(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/some)_\n\nAnalogous to Array.prototype.some Returns true if any key-value pair satisfies the provided\ntesting function. \nOptionally _compareFn_ can be provided which assures that keys are tested in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### toArray(obj[, cb[, thisArg[, compareFn]]]) _(es5-ext/object/to-array)_\n\nCreates an array of results of calling a provided function on every key-value pair in this object. \nOptionally _compareFn_ can be provided which assures that results are added in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### unserialize(str) _(es5-ext/object/unserialize)_\n\nUserializes value previously serialized with [serialize](#serializevalue-es5-extobjectserialize)\n\n#### validCallable(x) _(es5-ext/object/valid-callable)_\n\nIf given object is not callable throw TypeError in other case return it.\n\n#### validObject(x) _(es5-ext/object/valid-object)_\n\nThrows error if given value is not an object, otherwise it is returned.\n\n#### validValue(x) _(es5-ext/object/valid-value)_\n\nThrows error if given value is `null` or `undefined`, otherwise returns value.\n\n### RegExp Constructor extensions\n\n#### escape(str) _(es5-ext/reg-exp/escape)_\n\nEscapes string to be used in regular expression\n\n#### isRegExp(x) _(es5-ext/reg-exp/is-reg-exp)_\n\nWhether object is regular expression\n\n#### validRegExp(x) _(es5-ext/reg-exp/valid-reg-exp)_\n\nIf object is regular expression it is returned, otherwise TypeError is thrown.\n\n### RegExp Prototype extensions\n\n#### re.isSticky(x) _(es5-ext/reg-exp/#/is-sticky)_\n\nWhether regular expression has `sticky` flag.\n\nIt\'s to be used as counterpart to [regExp.sticky](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-get-regexp.prototype.sticky) if it\'s not implemented.\n\n#### re.isUnicode(x) _(es5-ext/reg-exp/#/is-unicode)_\n\nWhether regular expression has `unicode` flag.\n\nIt\'s to be used as counterpart to [regExp.unicode](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-get-regexp.prototype.unicode) if it\'s not implemented.\n\n#### re.match(string) _(es5-ext/reg-exp/#/match)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.match). \n\n#### re.replace(string, replaceValue) _(es5-ext/reg-exp/#/replace)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.replace). \n\n#### re.search(string) _(es5-ext/reg-exp/#/search)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.search). \n\n#### re.split(string) _(es5-ext/reg-exp/#/search)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.split). \n\n#### re.sticky _(es5-ext/reg-exp/#/sticky/implement)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.sticky). \nIt\'s a getter, so only `implement` and `is-implemented` modules are provided.\n\n#### re.unicode _(es5-ext/reg-exp/#/unicode/implement)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.unicode). \nIt\'s a getter, so only `implement` and `is-implemented` modules are provided.\n\n### String Constructor extensions\n\n#### formatMethod(fMap) _(es5-ext/string/format-method)_\n\nCreates format method. It\'s used e.g. to create `Date.prototype.format` method\n\n#### fromCodePoint([…codePoints]) _(es5-ext/string/from-code-point)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.fromcodepoint)\n\n#### isString(x) _(es5-ext/string/is-string)_\n\nWhether object is string\n\n#### randomUniq() _(es5-ext/string/random-uniq)_\n\nReturns randomly generated id, with guarantee of local uniqueness (no same id will be returned twice)\n\n#### raw(callSite[, …substitutions]) _(es5-ext/string/raw)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.raw)\n\n### String Prototype extensions\n\n#### str.at(pos) _(es5-ext/string/#/at)_\n\n_Proposed for ECMAScript 6/7 standard, but not (yet) in a draft_\n\nReturns a string at given position in Unicode-safe manner.\nBased on [implementation by Mathias Bynens](https://github.com/mathiasbynens/String.prototype.at).\n\n#### str.camelToHyphen() _(es5-ext/string/#/camel-to-hyphen)_\n\nConvert camelCase string to hyphen separated, e.g. one-two-three -> oneTwoThree.\nUseful when converting names from js property convention into filename convention.\n\n#### str.capitalize() _(es5-ext/string/#/capitalize)_\n\nCapitalize first character of a string\n\n#### str.caseInsensitiveCompare(str) _(es5-ext/string/#/case-insensitive-compare)_\n\nCase insensitive compare\n\n#### str.codePointAt(pos) _(es5-ext/string/#/code-point-at)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.codepointat)\n\nBased on [implementation by Mathias Bynens](https://github.com/mathiasbynens/String.prototype.codePointAt).\n\n#### str.contains(searchString[, position]) _(es5-ext/string/#/contains)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains)\n\nWhether string contains given string.\n\n#### str.endsWith(searchString[, endPosition]) _(es5-ext/string/#/ends-with)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith). \nWhether strings ends with given string\n\n#### str.hyphenToCamel() _(es5-ext/string/#/hyphen-to-camel)_\n\nConvert hyphen separated string to camelCase, e.g. one-two-three -> oneTwoThree.\nUseful when converting names from filename convention to js property name convention.\n\n#### str.indent(str[, count]) _(es5-ext/string/#/indent)_\n\nIndents each line with provided _str_ (if _count_ given then _str_ is repeated _count_ times).\n\n#### str.last() _(es5-ext/string/#/last)_\n\nReturn last character\n\n#### str.normalize([form]) _(es5-ext/string/#/normalize)_\n\n[_Introduced with ECMAScript 6_](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize). \nReturns the Unicode Normalization Form of a given string. \nBased on Matsuza\'s version. Code used for integrated shim can be found at [github.com/walling/unorm](https://github.com/walling/unorm/blob/master/lib/unorm.js)\n\n#### str.pad(fill[, length]) _(es5-ext/string/#/pad)_\n\nPad string with _fill_.\nIf _length_ si given than _fill_ is reapated _length_ times.\nIf _length_ is negative then pad is applied from right.\n\n#### str.repeat(n) _(es5-ext/string/#/repeat)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.repeat). \nRepeat given string _n_ times\n\n#### str.plainReplace(search, replace) _(es5-ext/string/#/plain-replace)_\n\nSimple `replace` version. Doesn\'t support regular expressions. Replaces just first occurrence of search string. Doesn\'t support insert patterns, therefore it is safe to replace text with text obtained programmatically (there\'s no need for additional _$_ characters escape in such case).\n\n#### str.plainReplaceAll(search, replace) _(es5-ext/string/#/plain-replace-all)_\n\nSimple `replace` version. Doesn\'t support regular expressions. Replaces all occurrences of search string. Doesn\'t support insert patterns, therefore it is safe to replace text with text obtained programmatically (there\'s no need for additional _$_ characters escape in such case).\n\n#### str.startsWith(searchString[, position]) _(es5-ext/string/#/starts-with)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.startswith). \nWhether strings starts with given string\n\n#### str[@@iterator] _(es5-ext/string/#/@@iterator)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype-@@iterator). \nReturns iterator object which traverses all string characters (with respect to unicode symbols)\n\n### Tests [![Build Status](https://travis-ci.org/medikoo/es5-ext.png)](https://travis-ci.org/medikoo/es5-ext)\n\n\t$ npm test\n',
46954 silly install resolved readmeFilename: 'README.md',
46954 silly install resolved bugs: { url: 'https://github.com/medikoo/es5-ext/issues' },
46954 silly install resolved homepage: 'https://github.com/medikoo/es5-ext#readme',
46954 silly install resolved _id: 'es5-ext@0.10.7',
46954 silly install resolved _shasum: 'dfaea50721301042e2d89c1719d43493fa821656',
46954 silly install resolved _resolved: 'https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.7.tgz',
46954 silly install resolved _from: 'https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.7.tgz' } ]
46955 info install d@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map
46956 info install es6-symbol@2.0.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map
46957 info install es6-iterator@0.1.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map
46958 info install es5-ext@0.10.7 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map
46959 info installOne d@0.1.1
46960 verbose installOne of d to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map not in flight; installing
46961 info installOne es6-symbol@2.0.1
46962 verbose installOne of es6-symbol to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map not in flight; installing
46963 info installOne es6-iterator@0.1.3
46964 verbose installOne of es6-iterator to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map not in flight; installing
46965 info installOne es5-ext@0.10.7
46966 verbose installOne of es5-ext to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map not in flight; installing
46967 silly install resolved [ { name: 'd',
46967 silly install resolved version: '0.1.1',
46967 silly install resolved description: 'Property descriptor factory',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved scripts: { test: 'node node_modules/tad/bin/tad' },
46967 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/d.git' },
46967 silly install resolved keywords:
46967 silly install resolved [ 'descriptor',
46967 silly install resolved 'es',
46967 silly install resolved 'ecmascript',
46967 silly install resolved 'ecma',
46967 silly install resolved 'property',
46967 silly install resolved 'descriptors',
46967 silly install resolved 'meta',
46967 silly install resolved 'properties' ],
46967 silly install resolved dependencies: { 'es5-ext': '~0.10.2' },
46967 silly install resolved devDependencies: { tad: '~0.1.21' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# D - Property descriptor factory\n\n_Originally derived from [es5-ext](https://github.com/medikoo/es5-ext) package._\n\nDefining properties with descriptors is very verbose:\n\n```javascript\nvar Account = function () {};\nObject.defineProperties(Account.prototype, {\n deposit: { value: function () {\n /* ... */\n }, configurable: true, enumerable: false, writable: true },\n whithdraw: { value: function () {\n /* ... */\n }, configurable: true, enumerable: false, writable: true },\n balance: { get: function () {\n /* ... */\n }, configurable: true, enumerable: false }\n});\n```\n\nD cuts that to:\n\n```javascript\nvar d = require(\'d\');\n\nvar Account = function () {};\nObject.defineProperties(Account.prototype, {\n deposit: d(function () {\n /* ... */\n }),\n whithdraw: d(function () {\n /* ... */\n }),\n balance: d.gs(function () {\n /* ... */\n })\n});\n```\n\nBy default, created descriptor follow characteristics of native ES5 properties, and defines values as:\n\n```javascript\n{ configurable: true, enumerable: false, writable: true }\n```\n\nYou can overwrite it by preceding _value_ argument with instruction:\n```javascript\nd(\'c\', value); // { configurable: true, enumerable: false, writable: false }\nd(\'ce\', value); // { configurable: true, enumerable: true, writable: false }\nd(\'e\', value); // { configurable: false, enumerable: true, writable: false }\n\n// Same way for get/set:\nd.gs(\'e\', value); // { configurable: false, enumerable: true }\n```\n\n### Other utilities\n\n#### autoBind(obj, props) _(d/auto-bind)_\n\nDefine methods which will be automatically bound to its instances\n\n```javascript\nvar d = require(\'d\');\nvar autoBind = require(\'d/auto-bind\');\n\nvar Foo = function () { this._count = 0; };\nautoBind(Foo.prototype, {\n increment: d(function () { ++this._count; });\n});\n\nvar foo = new Foo();\n\n// Increment foo counter on each domEl click\ndomEl.addEventListener(\'click\', foo.increment, false);\n```\n\n#### lazy(obj, props) _(d/lazy)_\n\nDefine lazy properties, which will be resolved on first access\n\n```javascript\nvar d = require(\'d\');\nvar lazy = require(\'d/lazy\');\n\nvar Foo = function () {};\nlazy(Foo.prototype, {\n items: d(function () { return []; })\n});\n\nvar foo = new Foo();\nfoo.items.push(1, 2); // foo.items array created\n```\n\n## Installation\n### NPM\n\nIn your project path:\n\n\t$ npm install d\n\n### Browser\n\nYou can easily bundle _D_ for browser with [modules-webmake](https://github.com/medikoo/modules-webmake)\n\n## Tests [![Build Status](https://travis-ci.org/medikoo/d.png)](https://travis-ci.org/medikoo/d)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/d/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/d#readme',
46967 silly install resolved _id: 'd@0.1.1',
46967 silly install resolved _shasum: 'da184c535d18d8ee7ba2aa229b914009fae11309',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/d/-/d-0.1.1.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/d/-/d-0.1.1.tgz' },
46967 silly install resolved { name: 'es6-iterator',
46967 silly install resolved version: '0.1.3',
46967 silly install resolved description: 'Iterator abstraction based on ES6 specification',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved keywords: [ 'iterator', 'array', 'list', 'set', 'map', 'generator' ],
46967 silly install resolved repository:
46967 silly install resolved { type: 'git',
46967 silly install resolved url: 'git://github.com/medikoo/es6-iterator.git' },
46967 silly install resolved dependencies: { d: '~0.1.1', 'es5-ext': '~0.10.5', 'es6-symbol': '~2.0.1' },
46967 silly install resolved devDependencies:
46967 silly install resolved { 'event-emitter': '~0.3.3',
46967 silly install resolved tad: '~0.2.1',
46967 silly install resolved xlint: '~0.2.2',
46967 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46967 silly install resolved scripts:
46967 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46967 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46967 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# es6-iterator\n## ECMAScript 6 Iterator interface\n\n### Installation\n\n\t$ npm install es6-iterator\n\t\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n## API\n\n### Constructors\n\n#### Iterator(list) _(es6-iterator)_\n\nAbstract Iterator interface. Meant for extensions and not to be used on its own.\n\nAccepts any _list_ object (technically object with numeric _length_ property).\n\n_Mind it doesn\'t iterate strings properly, for that use dedicated [StringIterator](#string-iterator)_\n\n```javascript\nvar Iterator = require(\'es6-iterator\')\nvar iterator = new Iterator([1, 2, 3]);\n\niterator.next(); // { value: 1, done: false }\niterator.next(); // { value: 2, done: false }\niterator.next(); // { value: 3, done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n\n#### ArrayIterator(arrayLike[, kind]) _(es6-iterator/array)_\n\nDedicated for arrays and array-likes. Supports three iteration kinds:\n* __value__ _(default)_ - Iterates values\n* __key__ - Iterates indexes\n* __key+value__ - Iterates keys and indexes, each iteration value is in _[key, value]_ form.\n\n\n```javascript\nvar ArrayIterator = require(\'es6-iterator/array\')\nvar iterator = new ArrayIterator([1, 2, 3], \'key+value\');\n\niterator.next(); // { value: [0, 1], done: false }\niterator.next(); // { value: [1, 2], done: false }\niterator.next(); // { value: [2, 3], done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\nMay also be used for _arguments_ objects:\n\n```javascript\n(function () {\n var iterator = new ArrayIterator(arguments);\n\n iterator.next(); // { value: 1, done: false }\n iterator.next(); // { value: 2, done: false }\n iterator.next(); // { value: 3, done: false }\n iterator.next(); // { value: undefined, done: true }\n}(1, 2, 3));\n```\n\n#### StringIterator(str) _(es6-iterator/string)_\n\nAssures proper iteration over unicode symbols. \nSee: http://mathiasbynens.be/notes/javascript-unicode\n\n```javascript\nvar StringIterator = require(\'es6-iterator/string\');\nvar iterator = new StringIterator(\'f🙈o🙉o🙊\');\n\niterator.next(); // { value: \'f\', done: false }\niterator.next(); // { value: \'🙈\', done: false }\niterator.next(); // { value: \'o\', done: false }\niterator.next(); // { value: \'🙉\', done: false }\niterator.next(); // { value: \'o\', done: false }\niterator.next(); // { value: \'🙊\', done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n### Function utilities\n\n#### forOf(iterable, callback[, thisArg]) _(es6-iterator/for-of)_\n\nPolyfill for ECMAScript 6 [`for...of`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of) statement.\n\n```\nvar forOf = require(\'es6-iterator/for-of\');\nvar result = [];\n\nforOf(\'🙈🙉🙊\', function (monkey) { result.push(monkey); });\nconsole.log(result); // [\'🙈\', \'🙉\', \'🙊\'];\n```\n\nOptionally you can break iteration at any point:\n\n```javascript\nvar result = [];\n\nforOf([1,2,3,4]\', function (val, doBreak) {\n result.push(monkey);\n if (val >= 3) doBreak();\n});\nconsole.log(result); // [1, 2, 3];\n```\n\n#### get(obj) _(es6-iterator/get)_\n\nReturn iterator for any iterable object.\n\n```javascript\nvar getIterator = require(\'es6-iterator/get\');\nvar iterator = get([1,2,3]);\n\niterator.next(); // { value: 1, done: false }\niterator.next(); // { value: 2, done: false }\niterator.next(); // { value: 3, done: false }\niterator.next(); // { value: undefined, done: true }\n```\n\n#### isIterable(obj) _(es6-iterator/is-iterable)_\n\nWhether _obj_ is iterable\n\n```javascript\nvar isIterable = require(\'es6-iterator/is-iterable\');\n\nisIterable(null); // false\nisIterable(true); // false\nisIterable(\'str\'); // true\nisIterable([\'a\', \'r\', \'r\']); // true\nisIterable(new ArrayIterator([])); // true\n```\n\n#### validIterable(obj) _(es6-iterator/valid-iterable)_\n\nIf _obj_ is an iterable it is returned. Otherwise _TypeError_ is thrown.\n\n### Method extensions\n\n#### iterator.chain(iterator1[, …iteratorn]) _(es6-iterator/#/chain)_\n\nChain multiple iterators into one.\n\n### Tests [![Build Status](https://travis-ci.org/medikoo/es6-iterator.png)](https://travis-ci.org/medikoo/es6-iterator)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/es6-iterator/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/es6-iterator#readme',
46967 silly install resolved _id: 'es6-iterator@0.1.3',
46967 silly install resolved _shasum: 'd6f58b8c4fc413c249b4baa19768f8e4d7c8944e',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz' },
46967 silly install resolved { name: 'event-emitter',
46967 silly install resolved version: '0.3.3',
46967 silly install resolved description: 'Environment agnostic event emitter',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved keywords:
46967 silly install resolved [ 'event',
46967 silly install resolved 'events',
46967 silly install resolved 'trigger',
46967 silly install resolved 'observer',
46967 silly install resolved 'listener',
46967 silly install resolved 'emitter',
46967 silly install resolved 'pubsub' ],
46967 silly install resolved repository:
46967 silly install resolved { type: 'git',
46967 silly install resolved url: 'git://github.com/medikoo/event-emitter.git' },
46967 silly install resolved dependencies: { 'es5-ext': '~0.10.5', d: '~0.1.1' },
46967 silly install resolved devDependencies:
46967 silly install resolved { tad: '~0.2.1',
46967 silly install resolved xlint: '~0.2.2',
46967 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46967 silly install resolved scripts:
46967 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46967 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46967 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# event-emitter\n## Environment agnostic event emitter\n\n### Installation\n\n\t$ npm install event-emitter\n\t\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n### Usage\n\n```javascript\nvar ee = require(\'event-emitter\');\n\nvar emitter = ee({}), listener;\n\nemitter.on(\'test\', listener = function (args) {\n // …emitter logic\n});\n\nemitter.once(\'test\', function (args) {\n // …invoked only once(!)\n});\n\nemitter.emit(\'test\', arg1, arg2/*…args*/); // Two above listeners invoked\nemitter.emit(\'test\', arg1, arg2/*…args*/); // Only first listener invoked\n\nemitter.off(\'test\', listener); // Removed first listener\nemitter.emit(\'test\', arg1, arg2/*…args*/); // No listeners invoked\n```\n### Additional utilities\n\n#### allOff(obj) _(event-emitter/all-off)_\n\nRemoves all listeners from given event emitter object\n\n#### hasListeners(obj[, name]) _(event-emitter/has-listeners)_\n\nWhether object has some listeners attached to the object.\nWhen `name` is provided, it checks listeners for specific event name\n\n```javascript\nvar emitter = ee();\nvar hasListeners = require(\'event-emitter/has-listeners\');\nvar listener = function () {};\n\nhasListeners(emitter); // false\n\nemitter.on(\'foo\', listener);\nhasListeners(emitter); // true\nhasListeners(emitter, \'foo\'); // true\nhasListeners(emitter, \'bar\'); // false\n\nemitter.off(\'foo\', listener);\nhasListeners(emitter, \'foo\'); // false\n```\n\n#### pipe(source, target[, emitMethodName]) _(event-emitter/pipe)_\n\nPipes all events from _source_ emitter onto _target_ emitter (all events from _source_ emitter will be emitted also on _target_ emitter, but not other way). \nReturns _pipe_ object which exposes `pipe.close` function. Invoke it to close configured _pipe_. \nIt works internally by redefinition of `emit` method, if in your interface this method is referenced differently, provide its name (or symbol) with third argument.\n\n#### unify(emitter1, emitter2) _(event-emitter/unify)_\n\nUnifies event handling for two objects. Events emitted on _emitter1_ would be also emitter on _emitter2_, and other way back. \nNon reversible.\n\n```javascript\nvar eeUnify = require(\'event-emitter/unify\');\n\nvar emitter1 = ee(), listener1, listener3;\nvar emitter2 = ee(), listener2, listener4;\n\nemitter1.on(\'test\', listener1 = function () { });\nemitter2.on(\'test\', listener2 = function () { });\n\nemitter1.emit(\'test\'); // Invoked listener1\nemitter2.emit(\'test\'); // Invoked listener2\n\nvar unify = eeUnify(emitter1, emitter2);\n\nemitter1.emit(\'test\'); // Invoked listener1 and listener2\nemitter2.emit(\'test\'); // Invoked listener1 and listener2\n\nemitter1.on(\'test\', listener3 = function () { });\nemitter2.on(\'test\', listener4 = function () { });\n\nemitter1.emit(\'test\'); // Invoked listener1, listener2, listener3 and listener4\nemitter2.emit(\'test\'); // Invoked listener1, listener2, listener3 and listener4\n```\n\n### Tests [![Build Status](https://travis-ci.org/medikoo/event-emitter.png)](https://travis-ci.org/medikoo/event-emitter)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/event-emitter/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/event-emitter#readme',
46967 silly install resolved _id: 'event-emitter@0.3.3',
46967 silly install resolved _shasum: 'df8e806541c68ab8ff20a79a1841b91abaa1bee4',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.3.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.3.tgz' },
46967 silly install resolved { name: 'es6-symbol',
46967 silly install resolved version: '0.1.1',
46967 silly install resolved description: 'ECMAScript6 Symbol polyfill',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved keywords: [ 'symbol', 'private', 'property', 'es6', 'ecmascript', 'harmony' ],
46967 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/es6-symbol.git' },
46967 silly install resolved dependencies: { d: '~0.1.1', 'es5-ext': '~0.10.4' },
46967 silly install resolved devDependencies: { tad: '0.2.x' },
46967 silly install resolved scripts: { test: 'node ./node_modules/tad/bin/tad' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# es6-symbol\n## ECMAScript6 Symbol polyfill\n\n### Limitations\n\n- Underneath it uses real string property names which can easily be retrieved (however accidental collision with other property names is unlikely)\n- As it needs custom `toString` behavior to work properly. Original `Symbol.prototype.toString` couldn\'t be implemented as specified, still it\'s accessible as `Symbol.prototoype.properToString`\n\n### Usage\n\nIf you want to make sure your environment implements `Symbol`, do:\n\n```javascript\nrequire(\'es6-symbol/implement\');\n```\n\nIf you\'d like to use native version when it exists and fallback to polyfill if it doesn\'t, but without implementing `Symbol` on global scope, do:\n\n```javascript\nvar Symbol = require(\'es6-symbol\');\n```\n\nIf you strictly want to use polyfill even if native `Symbol` exists (hard to find a good reason for that), do:\n\n```javascript\nvar Symbol = require(\'es6-symbol/polyfill\');\n```\n\n#### API\n\nBest is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects). Still if you want quick look, follow examples:\n\n```javascript\nvar Symbol = require(\'es6-symbol\');\n\nvar symbol = Symbol(\'My custom symbol\');\nvar x = {};\n\nx[symbol] = \'foo\';\nconsole.log(x[symbol]); \'foo\'\n\n// Detect iterable:\nvar iterator, result;\nif (possiblyIterable[Symbol.iterator]) {\n iterator = possiblyIterable[Symbol.iterator]();\n result = iterator.next();\n while(!result.done) {\n console.log(result.value);\n result = iterator.next();\n }\n}\n```\n\n### Installation\n#### NPM\n\nIn your project path:\n\n\t$ npm install es6-symbol\n\n##### Browser\n\nYou can easily bundle _es6-symbol_ for browser with [modules-webmake](https://github.com/medikoo/modules-webmake)\n\n## Tests [![Build Status](https://travis-ci.org/medikoo/es6-symbol.png)](https://travis-ci.org/medikoo/es6-symbol)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/es6-symbol/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/es6-symbol#readme',
46967 silly install resolved _id: 'es6-symbol@0.1.1',
46967 silly install resolved _shasum: '9cf7fab2edaff1b1da8fe8e68bfe3f5aca6ca218',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/es6-symbol/-/es6-symbol-0.1.1.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/es6-symbol/-/es6-symbol-0.1.1.tgz' },
46967 silly install resolved { name: 'es6-set',
46967 silly install resolved version: '0.1.1',
46967 silly install resolved description: 'ECMAScript6 Set polyfill',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved keywords: [ 'set', 'collection', 'es6', 'harmony', 'list', 'hash' ],
46967 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/es6-set.git' },
46967 silly install resolved dependencies:
46967 silly install resolved { d: '~0.1.1',
46967 silly install resolved 'es5-ext': '~0.10.4',
46967 silly install resolved 'es6-iterator': '~0.1.1',
46967 silly install resolved 'es6-symbol': '~0.1.1',
46967 silly install resolved 'event-emitter': '~0.3.1' },
46967 silly install resolved devDependencies:
46967 silly install resolved { tad: '0.2.x',
46967 silly install resolved xlint: '~0.2.1',
46967 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46967 silly install resolved scripts:
46967 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46967 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46967 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# es6-set\n## Set collection as specified in ECMAScript6\n\n### Usage\n\nIf you want to make sure your environment implements `Set`, do:\n\n```javascript\nrequire(\'es6-set/implement\');\n```\n\nIf you\'d like to use native version when it exists and fallback to polyfill if it doesn\'t, but without implementing `Set` on global scope, do:\n\n```javascript\nvar Set = require(\'es6-set\');\n```\n\nIf you strictly want to use polyfill even if native `Set` exists, do:\n\n```javascript\nvar Set = require(\'es6-set/polyfill\');\n```\n\n### Installation\n\n\t$ npm install es6-set\n\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n#### API\n\nBest is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-objects). Still if you want quick look, follow examples:\n\n```javascript\nvar Set = require(\'es6-set\');\n\nvar set = new Set([\'raz\', \'dwa\', {}]);\n\nset.size; // 3\nset.has(\'raz\'); // true\nset.has(\'foo\'); // false\nset.add(\'foo\'); // set\nset.size // 4\nset.has(\'foo\'); // true\nset.has(\'dwa\'); // true\nset.delete(\'dwa\'); // true\nset.size; // 3\n\nset.forEach(function (value) {\n // \'raz\', {}, \'foo\' iterated\n});\n\n// FF nightly only:\nfor (value of set) {\n // \'raz\', {}, \'foo\' iterated\n}\n\nvar iterator = set.values();\n\niterator.next(); // { done: false, value: \'raz\' }\niterator.next(); // { done: false, value: {} }\niterator.next(); // { done: false, value: \'foo\' }\niterator.next(); // { done: true, value: undefined }\n\nset.clear(); // undefined\nset.size; // 0\n```\n\n## Tests [![Build Status](https://travis-ci.org/medikoo/es6-set.png)](https://travis-ci.org/medikoo/es6-set)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/es6-set/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/es6-set#readme',
46967 silly install resolved _id: 'es6-set@0.1.1',
46967 silly install resolved _shasum: '497cd235c9a2691f4caa0e33dd73ef86bde738ac',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/es6-set/-/es6-set-0.1.1.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/es6-set/-/es6-set-0.1.1.tgz' },
46967 silly install resolved { name: 'es5-ext',
46967 silly install resolved version: '0.10.7',
46967 silly install resolved description: 'ECMAScript 5 extensions and ES6 shims',
46967 silly install resolved author:
46967 silly install resolved { name: 'Mariusz Nowak',
46967 silly install resolved email: 'medyk@medikoo.com',
46967 silly install resolved url: 'http://www.medikoo.com/' },
46967 silly install resolved keywords:
46967 silly install resolved [ 'ecmascript',
46967 silly install resolved 'ecmascript5',
46967 silly install resolved 'ecmascript6',
46967 silly install resolved 'es5',
46967 silly install resolved 'es6',
46967 silly install resolved 'extensions',
46967 silly install resolved 'ext',
46967 silly install resolved 'addons',
46967 silly install resolved 'extras',
46967 silly install resolved 'harmony',
46967 silly install resolved 'javascript',
46967 silly install resolved 'polyfill',
46967 silly install resolved 'shim',
46967 silly install resolved 'util',
46967 silly install resolved 'utils',
46967 silly install resolved 'utilities' ],
46967 silly install resolved repository: { type: 'git', url: 'git://github.com/medikoo/es5-ext.git' },
46967 silly install resolved dependencies: { 'es6-iterator': '~0.1.3', 'es6-symbol': '~2.0.1' },
46967 silly install resolved devDependencies:
46967 silly install resolved { tad: '~0.2.2',
46967 silly install resolved xlint: '~0.2.2',
46967 silly install resolved 'xlint-jslint-medikoo': '~0.1.2' },
46967 silly install resolved scripts:
46967 silly install resolved { lint: 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream',
46967 silly install resolved 'lint-console': 'node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch',
46967 silly install resolved test: 'node ./node_modules/tad/bin/tad' },
46967 silly install resolved license: 'MIT',
46967 silly install resolved readme: '# es5-ext\n## ECMAScript 5 extensions\n### (with respect to ECMAScript 6 standard)\n\nShims for upcoming ES6 standard and other goodies implemented strictly with ECMAScript conventions in mind.\n\nIt\'s designed to be used in compliant ECMAScript 5 or ECMAScript 6 environments. Older environments are not supported, although most of the features should work with correct ECMAScript 5 shim on board.\n\nWhen used in ECMAScript 6 environment, native implementation (if valid) takes precedence over shims.\n\n### Installation\n\n\t$ npm install es5-ext\n\t\nTo port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)\n\n### Usage\n\n#### ECMAScript 6 features\n\nYou can force ES6 features to be implemented in your environment, e.g. following will assign `from` function to `Array` (only if it\'s not implemented already).\n\n```javascript\nrequire(\'es5-ext/array/from/implement\');\nArray.from(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\nYou can also access shims directly, without fixing native objects. Following will return native `Array.from` if it\'s available and fallback to shim if it\'s not.\n\n```javascript\nvar aFrom = require(\'es5-ext/array/from\');\naFrom(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\nIf you want to use shim unconditionally (even if native implementation exists) do:\n\n```javascript\nvar aFrom = require(\'es5-ext/array/from/shim\');\naFrom(\'foo\'); // [\'f\', \'o\', \'o\']\n```\n\n##### List of ES6 shims\n\nIt\'s about properties introduced with ES6 and those that have been updated in new spec.\n\n- `Array.from` -> `require(\'es5-ext/array/from\')`\n- `Array.of` -> `require(\'es5-ext/array/of\')`\n- `Array.prototype.concat` -> `require(\'es5-ext/array/#/concat\')`\n- `Array.prototype.copyWithin` -> `require(\'es5-ext/array/#/copy-within\')`\n- `Array.prototype.entries` -> `require(\'es5-ext/array/#/entries\')`\n- `Array.prototype.fill` -> `require(\'es5-ext/array/#/fill\')`\n- `Array.prototype.filter` -> `require(\'es5-ext/array/#/filter\')`\n- `Array.prototype.find` -> `require(\'es5-ext/array/#/find\')`\n- `Array.prototype.findIndex` -> `require(\'es5-ext/array/#/find-index\')`\n- `Array.prototype.keys` -> `require(\'es5-ext/array/#/keys\')`\n- `Array.prototype.map` -> `require(\'es5-ext/array/#/map\')`\n- `Array.prototype.slice` -> `require(\'es5-ext/array/#/slice\')`\n- `Array.prototype.splice` -> `require(\'es5-ext/array/#/splice\')`\n- `Array.prototype.values` -> `require(\'es5-ext/array/#/values\')`\n- `Array.prototype[@@iterator]` -> `require(\'es5-ext/array/#/@@iterator\')`\n- `Math.acosh` -> `require(\'es5-ext/math/acosh\')`\n- `Math.asinh` -> `require(\'es5-ext/math/asinh\')`\n- `Math.atanh` -> `require(\'es5-ext/math/atanh\')`\n- `Math.cbrt` -> `require(\'es5-ext/math/cbrt\')`\n- `Math.clz32` -> `require(\'es5-ext/math/clz32\')`\n- `Math.cosh` -> `require(\'es5-ext/math/cosh\')`\n- `Math.exmp1` -> `require(\'es5-ext/math/expm1\')`\n- `Math.fround` -> `require(\'es5-ext/math/fround\')`\n- `Math.hypot` -> `require(\'es5-ext/math/hypot\')`\n- `Math.imul` -> `require(\'es5-ext/math/imul\')`\n- `Math.log1p` -> `require(\'es5-ext/math/log1p\')`\n- `Math.log2` -> `require(\'es5-ext/math/log2\')`\n- `Math.log10` -> `require(\'es5-ext/math/log10\')`\n- `Math.sign` -> `require(\'es5-ext/math/sign\')`\n- `Math.signh` -> `require(\'es5-ext/math/signh\')`\n- `Math.tanh` -> `require(\'es5-ext/math/tanh\')`\n- `Math.trunc` -> `require(\'es5-ext/math/trunc\')`\n- `Number.EPSILON` -> `require(\'es5-ext/number/epsilon\')`\n- `Number.MAX_SAFE_INTEGER` -> `require(\'es5-ext/number/max-safe-integer\')`\n- `Number.MIN_SAFE_INTEGER` -> `require(\'es5-ext/number/min-safe-integer\')`\n- `Number.isFinite` -> `require(\'es5-ext/number/is-finite\')`\n- `Number.isInteger` -> `require(\'es5-ext/number/is-integer\')`\n- `Number.isNaN` -> `require(\'es5-ext/number/is-nan\')`\n- `Number.isSafeInteger` -> `require(\'es5-ext/number/is-safe-integer\')`\n- `Object.assign` -> `require(\'es5-ext/object/assign\')`\n- `Object.keys` -> `require(\'es5-ext/object/keys\')`\n- `Object.setPrototypeOf` -> `require(\'es5-ext/object/set-prototype-of\')`\n- `RegExp.prototype.match` -> `require(\'es5-ext/reg-exp/#/match\')`\n- `RegExp.prototype.replace` -> `require(\'es5-ext/reg-exp/#/replace\')`\n- `RegExp.prototype.search` -> `require(\'es5-ext/reg-exp/#/search\')`\n- `RegExp.prototype.split` -> `require(\'es5-ext/reg-exp/#/split\')`\n- `RegExp.prototype.sticky` -> Implement with `require(\'es5-ext/reg-exp/#/sticky/implement\')`, use as function with `require(\'es5-ext/reg-exp/#/is-sticky\')`\n- `RegExp.prototype.unicode` -> Implement with `require(\'es5-ext/reg-exp/#/unicode/implement\')`, use as function with `require(\'es5-ext/reg-exp/#/is-unicode\')`\n- `String.fromCodePoint` -> `require(\'es5-ext/string/from-code-point\')`\n- `String.raw` -> `require(\'es5-ext/string/raw\')`\n- `String.prototype.codePointAt` -> `require(\'es5-ext/string/#/code-point-at\')`\n- `String.prototype.contains` -> `require(\'es5-ext/string/#/contains\')`\n- `String.prototype.endsWith` -> `require(\'es5-ext/string/#/ends-with\')`\n- `String.prototype.normalize` -> `require(\'es5-ext/string/#/normalize\')`\n- `String.prototype.repeat` -> `require(\'es5-ext/string/#/repeat\')`\n- `String.prototype.startsWith` -> `require(\'es5-ext/string/#/starts-with\')`\n- `String.prototype[@@iterator]` -> `require(\'es5-ext/string/#/@@iterator\')`\n\n#### Non ECMAScript standard features\n\n__es5-ext__ provides also other utils, and implements them as if they were proposed for a standard. It mostly offers methods (not functions) which can directly be assigned to native prototypes:\n\n```javascript\nObject.defineProperty(Function.prototype, \'partial\', { value: require(\'es5-ext/function/#/partial\'),\n configurable: true, enumerable: false, writable: true });\nObject.defineProperty(Array.prototype, \'flatten\', { value: require(\'es5-ext/array/#/flatten\'),\n configurable: true, enumerable: false, writable: true });\nObject.defineProperty(String.prototype, \'capitalize\', { value: require(\'es5-ext/string/#/capitalize\'),\n configurable: true, enumerable: false, writable: true });\n```\n\nSee [es5-extend](https://github.com/wookieb/es5-extend#es5-extend), a great utility that automatically will extend natives for you. \n\n__Important:__ Remember to __not__ extend natives in scope of generic reusable packages (e.g. ones you intend to publish to npm). Extending natives is fine __only__ if you\'re the _owner_ of the global scope, so e.g. in final project you lead development of.\n\nWhen you\'re in situation when native extensions are not good idea, then you should use methods indirectly:\n\n\n```javascript\nvar flatten = require(\'es5-ext/array/#/flatten\');\n\nflatten.call([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nfor better convenience you can turn methods into functions:\n\n\n```javascript\nvar call = Function.prototype.call\nvar flatten = call.bind(require(\'es5-ext/array/#/flatten\'));\n\nflatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nYou can configure custom toolkit (like [underscorejs](http://underscorejs.org/)), and use it throughout your application\n\n```javascript\nvar util = {};\nutil.partial = call.bind(require(\'es5-ext/function/#/partial\'));\nutil.flatten = call.bind(require(\'es5-ext/array/#/flatten\'));\nutil.startsWith = call.bind(require(\'es5-ext/string/#/starts-with\'));\n\nutil.flatten([1, [2, [3, 4]]]); // [1, 2, 3, 4]\n```\n\nAs with native ones most methods are generic and can be run on any type of object.\n\n## API\n\n### Global extensions\n\n#### global _(es5-ext/global)_\n\nObject that represents global scope\n\n### Array Constructor extensions\n\n#### from(arrayLike[, mapFn[, thisArg]]) _(es5-ext/array/from)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.from). \nReturns array representation of _iterable_ or _arrayLike_. If _arrayLike_ is an instance of array, its copy is returned.\n\n#### generate([length[, …fill]]) _(es5-ext/array/generate)_\n\nGenerate an array of pre-given _length_ built of repeated arguments.\n\n#### isPlainArray(x) _(es5-ext/array/is-plain-array)_\n\nReturns true if object is plain array (not instance of one of the Array\'s extensions).\n\n#### of([…items]) _(es5-ext/array/of)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.of). \nCreate an array from given arguments.\n\n#### toArray(obj) _(es5-ext/array/to-array)_\n\nReturns array representation of `obj`. If `obj` is already an array, `obj` is returned back.\n\n#### validArray(obj) _(es5-ext/array/valid-array)_\n\nReturns `obj` if it\'s an array, otherwise throws `TypeError`\n\n### Array Prototype extensions\n\n#### arr.binarySearch(compareFn) _(es5-ext/array/#/binary-search)_\n\nIn __sorted__ list search for index of item for which _compareFn_ returns value closest to _0_. \nIt\'s variant of binary search algorithm\n\n#### arr.clear() _(es5-ext/array/#/clear)_\n\nClears the array\n\n#### arr.compact() _(es5-ext/array/#/compact)_\n\nReturns a copy of the context with all non-values (`null` or `undefined`) removed.\n\n#### arr.concat() _(es5-ext/array/#/concat)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.concat). \nES6\'s version of `concat`. Supports `isConcatSpreadable` symbol, and returns array of same type as the context.\n\n#### arr.contains(searchElement[, position]) _(es5-ext/array/#/contains)_\n\nWhether list contains the given value.\n\n#### arr.copyWithin(target, start[, end]) _(es5-ext/array/#/copy-within)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.copywithin). \n\n#### arr.diff(other) _(es5-ext/array/#/diff)_\n\nReturns the array of elements that are present in context list but not present in other list.\n\n#### arr.eIndexOf(searchElement[, fromIndex]) _(es5-ext/array/#/e-index-of)_\n\n_egal_ version of `indexOf` method. [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) logic is used for comparision\n\n#### arr.eLastIndexOf(searchElement[, fromIndex]) _(es5-ext/array/#/e-last-index-of)_\n\n_egal_ version of `lastIndexOf` method. [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) logic is used for comparision\n\n#### arr.entries() _(es5-ext/array/#/entries)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.entries). \nReturns iterator object, which traverses the array. Each value is represented with an array, where first value is an index and second is corresponding to index value.\n\n#### arr.exclusion([…lists]]) _(es5-ext/array/#/exclusion)_\n\nReturns the array of elements that are found only in one of the lists (either context list or list provided in arguments).\n\n#### arr.fill(value[, start, end]) _(es5-ext/array/#/fill)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.fill). \n\n#### arr.filter(callback[, thisArg]) _(es5-ext/array/#/filter)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.filter). \nES6\'s version of `filter`, returns array of same type as the context.\n\n#### arr.find(predicate[, thisArg]) _(es5-ext/array/#/find)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.find). \nReturn first element for which given function returns true\n\n#### arr.findIndex(predicate[, thisArg]) _(es5-ext/array/#/find-index)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.findindex). \nReturn first index for which given function returns true\n\n#### arr.first() _(es5-ext/array/#/first)_\n\nReturns value for first defined index\n\n#### arr.firstIndex() _(es5-ext/array/#/first-index)_\n\nReturns first declared index of the array\n\n#### arr.flatten() _(es5-ext/array/#/flatten)_\n\nReturns flattened version of the array\n\n#### arr.forEachRight(cb[, thisArg]) _(es5-ext/array/#/for-each-right)_\n\n`forEach` starting from last element\n\n#### arr.group(cb[, thisArg]) _(es5-ext/array/#/group)_\n\nGroup list elements by value returned by _cb_ function\n\n#### arr.indexesOf(searchElement[, fromIndex]) _(es5-ext/array/#/indexes-of)_\n\nReturns array of all indexes of given value\n\n#### arr.intersection([…lists]) _(es5-ext/array/#/intersection)_\n\nComputes the array of values that are the intersection of all lists (context list and lists given in arguments)\n\n#### arr.isCopy(other) _(es5-ext/array/#/is-copy)_\n\nReturns true if both context and _other_ lists have same content\n\n#### arr.isUniq() _(es5-ext/array/#/is-uniq)_\n\nReturns true if all values in array are unique\n\n#### arr.keys() _(es5-ext/array/#/keys)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.keys). \nReturns iterator object, which traverses all array indexes.\n\n#### arr.last() _(es5-ext/array/#/last)_\n\nReturns value of last defined index\n\n#### arr.lastIndex() _(es5-ext/array/#/last)_\n\nReturns last defined index of the array\n\n#### arr.map(callback[, thisArg]) _(es5-ext/array/#/map)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.map). \nES6\'s version of `map`, returns array of same type as the context.\n\n#### arr.remove(value[, …valuen]) _(es5-ext/array/#/remove)_\n\nRemove values from the array\n\n#### arr.separate(sep) _(es5-ext/array/#/separate)_\n\nReturns array with items separated with `sep` value\n\n#### arr.slice(callback[, thisArg]) _(es5-ext/array/#/slice)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.slice). \nES6\'s version of `slice`, returns array of same type as the context.\n\n#### arr.someRight(cb[, thisArg]) _(es5-ext/array/#/someRight)_\n\n`some` starting from last element\n\n#### arr.splice(callback[, thisArg]) _(es5-ext/array/#/splice)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.splice). \nES6\'s version of `splice`, returns array of same type as the context.\n\n#### arr.uniq() _(es5-ext/array/#/uniq)_\n\nReturns duplicate-free version of the array\n\n#### arr.values() _(es5-ext/array/#/values)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.values). \nReturns iterator object which traverses all array values.\n\n#### arr[@@iterator] _(es5-ext/array/#/@@iterator)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype-@@iterator). \nReturns iterator object which traverses all array values.\n\n### Boolean Constructor extensions\n\n#### isBoolean(x) _(es5-ext/boolean/is-boolean)_\n\nWhether value is boolean\n\n### Date Constructor extensions\n\n#### isDate(x) _(es5-ext/date/is-date)_\n\nWhether value is date instance\n\n#### validDate(x) _(es5-ext/date/valid-date)_\n\nIf given object is not date throw TypeError in other case return it.\n\n### Date Prototype extensions\n\n#### date.copy(date) _(es5-ext/date/#/copy)_\n\nReturns a copy of the date object\n\n#### date.daysInMonth() _(es5-ext/date/#/days-in-month)_\n\nReturns number of days of date\'s month\n\n#### date.floorDay() _(es5-ext/date/#/floor-day)_\n\nSets the date time to 00:00:00.000\n\n#### date.floorMonth() _(es5-ext/date/#/floor-month)_\n\nSets date day to 1 and date time to 00:00:00.000\n\n#### date.floorYear() _(es5-ext/date/#/floor-year)_\n\nSets date month to 0, day to 1 and date time to 00:00:00.000\n\n#### date.format(pattern) _(es5-ext/date/#/format)_\n\nFormats date up to given string. Supported patterns:\n\n* `%Y` - Year with century, 1999, 2003\n* `%y` - Year without century, 99, 03\n* `%m` - Month, 01..12\n* `%d` - Day of the month 01..31\n* `%H` - Hour (24-hour clock), 00..23\n* `%M` - Minute, 00..59\n* `%S` - Second, 00..59\n* `%L` - Milliseconds, 000..999\n\n### Error Constructor extensions\n\n#### custom(message/*, code, ext*/) _(es5-ext/error/custom)_\n\nCreates custom error object, optinally extended with `code` and other extension properties (provided with `ext` object) \n\n#### isError(x) _(es5-ext/error/is-error)_\n\nWhether value is an error (instance of `Error`). \n\n#### validError(x) _(es5-ext/error/valid-error)_\n\nIf given object is not error throw TypeError in other case return it.\n\n### Error Prototype extensions\n\n#### err.throw() _(es5-ext/error/#/throw)_\n\nThrows error\n\n### Function Constructor extensions\n\nSome of the functions were inspired by [Functional JavaScript](http://osteele.com/sources/javascript/functional/) project by Olivier Steele\n\n#### constant(x) _(es5-ext/function/constant)_\n\nReturns a constant function that returns pregiven argument\n\n_k(x)(y) =def x_\n\n#### identity(x) _(es5-ext/function/identity)_\n\nIdentity function. Returns first argument\n\n_i(x) =def x_\n\n#### invoke(name[, …args]) _(es5-ext/function/invoke)_\n\nReturns a function that takes an object as an argument, and applies object\'s\n_name_ method to arguments. \n_name_ can be name of the method or method itself.\n\n_invoke(name, …args)(object, …args2) =def object\\[name\\]\\(…args, …args2\\)_\n\n#### isArguments(x) _(es5-ext/function/is-arguments)_\n\nWhether value is arguments object\n\n#### isFunction(arg) _(es5-ext/function/is-function)_\n\nWether value is instance of function\n\n#### noop() _(es5-ext/function/noop)_\n\nNo operation function\n\n#### pluck(name) _(es5-ext/function/pluck)_\n\nReturns a function that takes an object, and returns the value of its _name_\nproperty\n\n_pluck(name)(obj) =def obj[name]_\n\n#### validFunction(arg) _(es5-ext/function/valid-function)_\n\nIf given object is not function throw TypeError in other case return it.\n\n### Function Prototype extensions\n\nSome of the methods were inspired by [Functional JavaScript](http://osteele.com/sources/javascript/functional/) project by Olivier Steele\n\n#### fn.compose([…fns]) _(es5-ext/function/#/compose)_\n\nApplies the functions in reverse argument-list order.\n\n_f1.compose(f2, f3, f4)(…args) =def f1(f2(f3(f4(…arg))))_\n\n#### fn.copy() _(es5-ext/function/#/copy)_\n\nProduces copy of given function\n\n#### fn.curry([n]) _(es5-ext/function/#/curry)_\n\nInvoking the function returned by this function only _n_ arguments are passed to the underlying function. If the underlying function is not saturated, the result is a function that passes all its arguments to the underlying function. \nIf _n_ is not provided then it defaults to context function length\n\n_f.curry(4)(arg1, arg2)(arg3)(arg4) =def f(arg1, args2, arg3, arg4)_\n\n#### fn.lock([…args]) _(es5-ext/function/#/lock)_\n\nReturns a function that applies the underlying function to _args_, and ignores its own arguments.\n\n_f.lock(…args)(…args2) =def f(…args)_\n\n_Named after it\'s counterpart in Google Closure_\n\n#### fn.not() _(es5-ext/function/#/not)_\n\nReturns a function that returns boolean negation of value returned by underlying function.\n\n_f.not()(…args) =def !f(…args)_\n\n#### fn.partial([…args]) _(es5-ext/function/#/partial)_\n\nReturns a function that when called will behave like context function called with initially passed arguments. If more arguments are suplilied, they are appended to initial args.\n\n_f.partial(…args1)(…args2) =def f(…args1, …args2)_\n\n#### fn.spread() _(es5-ext/function/#/spread)_\n\nReturns a function that applies underlying function with first list argument\n\n_f.match()(args) =def f.apply(null, args)_\n\n#### fn.toStringTokens() _(es5-ext/function/#/to-string-tokens)_\n\nSerializes function into two (arguments and body) string tokens. Result is plain object with `args` and `body` properties.\n\n### Math extensions\n\n#### acosh(x) _(es5-ext/math/acosh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.acosh). \n\n#### asinh(x) _(es5-ext/math/asinh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.asinh). \n\n#### atanh(x) _(es5-ext/math/atanh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.atanh). \n\n#### cbrt(x) _(es5-ext/math/cbrt)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.cbrt). \n\n#### clz32(x) _(es5-ext/math/clz32)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.clz32). \n\n#### cosh(x) _(es5-ext/math/cosh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.cosh). \n\n#### expm1(x) _(es5-ext/math/expm1)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.expm1). \n\n#### fround(x) _(es5-ext/math/fround)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.fround). \n\n#### hypot([…values]) _(es5-ext/math/hypot)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.hypot). \n\n#### imul(x, y) _(es5-ext/math/imul)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.imul). \n\n#### log1p(x) _(es5-ext/math/log1p)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log1p). \n\n#### log2(x) _(es5-ext/math/log2)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log2). \n\n#### log10(x) _(es5-ext/math/log10)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.log10). \n\n#### sign(x) _(es5-ext/math/sign)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.sign). \n\n#### sinh(x) _(es5-ext/math/sinh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.sinh). \n\n#### tanh(x) _(es5-ext/math/tanh)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.tanh). \n\n#### trunc(x) _(es5-ext/math/trunc)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-math.trunc). \n\n### Number Constructor extensions\n\n#### EPSILON _(es5-ext/number/epsilon)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.epsilon). \n\nThe difference between 1 and the smallest value greater than 1 that is representable as a Number value, which is approximately 2.2204460492503130808472633361816 x 10-16.\n\n#### isFinite(x) _(es5-ext/number/is-finite)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isfinite). \nWhether value is finite. Differs from global isNaN that it doesn\'t do type coercion.\n\n#### isInteger(x) _(es5-ext/number/is-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isinteger). \nWhether value is integer.\n\n#### isNaN(x) _(es5-ext/number/is-nan)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isnan). \nWhether value is NaN. Differs from global isNaN that it doesn\'t do type coercion.\n\n#### isNumber(x) _(es5-ext/number/is-number)_\n\nWhether given value is number\n\n#### isSafeInteger(x) _(es5-ext/number/is-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.issafeinteger). \n\n#### MAX_SAFE_INTEGER _(es5-ext/number/max-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.maxsafeinteger). \nThe value of Number.MAX_SAFE_INTEGER is 9007199254740991.\n\n#### MIN_SAFE_INTEGER _(es5-ext/number/min-safe-integer)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.minsafeinteger). \nThe value of Number.MIN_SAFE_INTEGER is -9007199254740991 (253-1).\n\n#### toInteger(x) _(es5-ext/number/to-integer)_\n\nConverts value to integer\n\n#### toPosInteger(x) _(es5-ext/number/to-pos-integer)_\n\nConverts value to positive integer. If provided value is less than 0, then 0 is returned\n\n#### toUint32(x) _(es5-ext/number/to-uint32)_\n\nConverts value to unsigned 32 bit integer. This type is used for array lengths.\nSee: http://www.2ality.com/2012/02/js-integers.html\n\n### Number Prototype extensions\n\n#### num.pad(length[, precision]) _(es5-ext/number/#/pad)_\n\nPad given number with zeros. Returns string\n\n### Object Constructor extensions\n\n#### assign(target, source[, …sourcen]) _(es5-ext/object/assign)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.assign). \nExtend _target_ by enumerable own properties of other objects. If properties are already set on target object, they will be overwritten.\n\n#### clear(obj) _(es5-ext/object/clear)_\n\nRemove all enumerable own properties of the object\n\n#### compact(obj) _(es5-ext/object/compact)_\n\nReturns copy of the object with all enumerable properties that have no falsy values\n\n#### compare(obj1, obj2) _(es5-ext/object/compare)_\n\nUniversal cross-type compare function. To be used for e.g. array sort.\n\n#### copy(obj) _(es5-ext/object/copy)_\n\nReturns copy of the object with all enumerable properties.\n\n#### copyDeep(obj) _(es5-ext/object/copy-deep)_\n\nReturns deep copy of the object with all enumerable properties.\n\n#### count(obj) _(es5-ext/object/count)_\n\nCounts number of enumerable own properties on object\n\n#### create(obj[, properties]) _(es5-ext/object/create)_\n\n`Object.create` alternative that provides workaround for [V8 issue](http://code.google.com/p/v8/issues/detail?id=2804).\n\nWhen `null` is provided as a prototype, it\'s substituted with specially prepared object that derives from Object.prototype but has all Object.prototype properties shadowed with undefined.\n\nIt\'s quirky solution that allows us to have plain objects with no truthy properties but with turnable prototype.\n\nUse only for objects that you plan to switch prototypes of and be aware of limitations of this workaround.\n\n#### eq(x, y) _(es5-ext/object/eq)_\n\nWhether two values are equal, using [_SameValueZero_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) algorithm.\n\n#### every(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/every)_\n\nAnalogous to Array.prototype.every. Returns true if every key-value pair in this object satisfies the provided testing function. \nOptionally _compareFn_ can be provided which assures that keys are tested in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### filter(obj, cb[, thisArg]) _(es5-ext/object/filter)_\n\nAnalogous to Array.prototype.filter. Returns new object with properites for which _cb_ function returned truthy value.\n\n#### firstKey(obj) _(es5-ext/object/first-key)_\n\nReturns first enumerable key of the object, as keys are unordered by specification, it can be any key of an object.\n\n#### flatten(obj) _(es5-ext/object/flatten)_\n\nReturns new object, with flatten properties of input object\n\n_flatten({ a: { b: 1 }, c: { d: 1 } }) =def { b: 1, d: 1 }_\n\n#### forEach(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/for-each)_\n\nAnalogous to Array.prototype.forEach. Calls a function for each key-value pair found in object\nOptionally _compareFn_ can be provided which assures that properties are iterated in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### getPropertyNames() _(es5-ext/object/get-property-names)_\n\nGet all (not just own) property names of the object\n\n#### is(x, y) _(es5-ext/object/is)_\n\nWhether two values are equal, using [_SameValue_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero) algorithm.\n\n#### isArrayLike(x) _(es5-ext/object/is-array-like)_\n\nWhether object is array-like object\n\n#### isCopy(x, y) _(es5-ext/object/is-copy)_\n\nTwo values are considered a copy of same value when all of their own enumerable properties have same values.\n\n#### isCopyDeep(x, y) _(es5-ext/object/is-copy-deep)_\n\nDeep comparision of objects\n\n#### isEmpty(obj) _(es5-ext/object/is-empty)_\n\nTrue if object doesn\'t have any own enumerable property\n\n#### isObject(arg) _(es5-ext/object/is-object)_\n\nWhether value is not primitive\n\n#### isPlainObject(arg) _(es5-ext/object/is-plain-object)_\n\nWhether object is plain object, its protototype should be Object.prototype and it cannot be host object.\n\n#### keyOf(obj, searchValue) _(es5-ext/object/key-of)_\n\nSearch object for value\n\n#### keys(obj) _(es5-ext/object/keys)_\n\n[_Updated with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.keys). \nES6\'s version of `keys`, doesn\'t throw on primitive input\n\n#### map(obj, cb[, thisArg]) _(es5-ext/object/map)_\n\nAnalogous to Array.prototype.map. Creates a new object with properties which values are results of calling a provided function on every key-value pair in this object.\n\n#### mapKeys(obj, cb[, thisArg]) _(es5-ext/object/map-keys)_\n\nCreate new object with same values, but remapped keys\n\n#### mixin(target, source) _(es5-ext/object/mixin)_\n\nExtend _target_ by all own properties of other objects. Properties found in both objects will be overwritten (unless they\'re not configurable and cannot be overwritten).\n_It was for a moment part of ECMAScript 6 draft._\n\n#### mixinPrototypes(target, …source]) _(es5-ext/object/mixin-prototypes)_\n\nExtends _target_, with all source and source\'s prototype properties.\nUseful as an alternative for `setPrototypeOf` in environments in which it cannot be shimmed (no `__proto__` support).\n\n#### normalizeOptions(options) _(es5-ext/object/normalize-options)_\n\nNormalizes options object into flat plain object. \n\nUseful for functions in which we either need to keep options object for future reference or need to modify it for internal use.\n\n- It never returns input `options` object back (always a copy is created)\n- `options` can be undefined in such case empty plain object is returned.\n- Copies all enumerable properties found down prototype chain.\n\n#### primitiveSet([…names]) _(es5-ext/object/primitive-set)_\n\nCreates `null` prototype based plain object, and sets on it all property names provided in arguments to true.\n\n#### safeTraverse(obj[, …names]) _(es5-ext/object/safe-traverse)_\n\nSafe navigation of object properties. See http://wiki.ecmascript.org/doku.php?id=strawman:existential_operator\n\n#### serialize(value) _(es5-ext/object/serialize)_\n\nSerialize value into string. Differs from [JSON.stringify](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify) that it serializes also dates, functions and regular expresssions.\n\n#### setPrototypeOf(object, proto) _(es5-ext/object/set-prototype-of)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.setprototypeof). \nIf native version is not provided, it depends on existence of `__proto__` functionality, if it\'s missing, `null` instead of function is exposed.\n\n#### some(obj, cb[, thisArg[, compareFn]]) _(es5-ext/object/some)_\n\nAnalogous to Array.prototype.some Returns true if any key-value pair satisfies the provided\ntesting function. \nOptionally _compareFn_ can be provided which assures that keys are tested in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### toArray(obj[, cb[, thisArg[, compareFn]]]) _(es5-ext/object/to-array)_\n\nCreates an array of results of calling a provided function on every key-value pair in this object. \nOptionally _compareFn_ can be provided which assures that results are added in given order. If provided _compareFn_ is equal to `true`, then order is alphabetical (by key).\n\n#### unserialize(str) _(es5-ext/object/unserialize)_\n\nUserializes value previously serialized with [serialize](#serializevalue-es5-extobjectserialize)\n\n#### validCallable(x) _(es5-ext/object/valid-callable)_\n\nIf given object is not callable throw TypeError in other case return it.\n\n#### validObject(x) _(es5-ext/object/valid-object)_\n\nThrows error if given value is not an object, otherwise it is returned.\n\n#### validValue(x) _(es5-ext/object/valid-value)_\n\nThrows error if given value is `null` or `undefined`, otherwise returns value.\n\n### RegExp Constructor extensions\n\n#### escape(str) _(es5-ext/reg-exp/escape)_\n\nEscapes string to be used in regular expression\n\n#### isRegExp(x) _(es5-ext/reg-exp/is-reg-exp)_\n\nWhether object is regular expression\n\n#### validRegExp(x) _(es5-ext/reg-exp/valid-reg-exp)_\n\nIf object is regular expression it is returned, otherwise TypeError is thrown.\n\n### RegExp Prototype extensions\n\n#### re.isSticky(x) _(es5-ext/reg-exp/#/is-sticky)_\n\nWhether regular expression has `sticky` flag.\n\nIt\'s to be used as counterpart to [regExp.sticky](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-get-regexp.prototype.sticky) if it\'s not implemented.\n\n#### re.isUnicode(x) _(es5-ext/reg-exp/#/is-unicode)_\n\nWhether regular expression has `unicode` flag.\n\nIt\'s to be used as counterpart to [regExp.unicode](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-get-regexp.prototype.unicode) if it\'s not implemented.\n\n#### re.match(string) _(es5-ext/reg-exp/#/match)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.match). \n\n#### re.replace(string, replaceValue) _(es5-ext/reg-exp/#/replace)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.replace). \n\n#### re.search(string) _(es5-ext/reg-exp/#/search)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.search). \n\n#### re.split(string) _(es5-ext/reg-exp/#/search)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.split). \n\n#### re.sticky _(es5-ext/reg-exp/#/sticky/implement)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.sticky). \nIt\'s a getter, so only `implement` and `is-implemented` modules are provided.\n\n#### re.unicode _(es5-ext/reg-exp/#/unicode/implement)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-regexp.prototype.unicode). \nIt\'s a getter, so only `implement` and `is-implemented` modules are provided.\n\n### String Constructor extensions\n\n#### formatMethod(fMap) _(es5-ext/string/format-method)_\n\nCreates format method. It\'s used e.g. to create `Date.prototype.format` method\n\n#### fromCodePoint([…codePoints]) _(es5-ext/string/from-code-point)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.fromcodepoint)\n\n#### isString(x) _(es5-ext/string/is-string)_\n\nWhether object is string\n\n#### randomUniq() _(es5-ext/string/random-uniq)_\n\nReturns randomly generated id, with guarantee of local uniqueness (no same id will be returned twice)\n\n#### raw(callSite[, …substitutions]) _(es5-ext/string/raw)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.raw)\n\n### String Prototype extensions\n\n#### str.at(pos) _(es5-ext/string/#/at)_\n\n_Proposed for ECMAScript 6/7 standard, but not (yet) in a draft_\n\nReturns a string at given position in Unicode-safe manner.\nBased on [implementation by Mathias Bynens](https://github.com/mathiasbynens/String.prototype.at).\n\n#### str.camelToHyphen() _(es5-ext/string/#/camel-to-hyphen)_\n\nConvert camelCase string to hyphen separated, e.g. one-two-three -> oneTwoThree.\nUseful when converting names from js property convention into filename convention.\n\n#### str.capitalize() _(es5-ext/string/#/capitalize)_\n\nCapitalize first character of a string\n\n#### str.caseInsensitiveCompare(str) _(es5-ext/string/#/case-insensitive-compare)_\n\nCase insensitive compare\n\n#### str.codePointAt(pos) _(es5-ext/string/#/code-point-at)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.codepointat)\n\nBased on [implementation by Mathias Bynens](https://github.com/mathiasbynens/String.prototype.codePointAt).\n\n#### str.contains(searchString[, position]) _(es5-ext/string/#/contains)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.contains)\n\nWhether string contains given string.\n\n#### str.endsWith(searchString[, endPosition]) _(es5-ext/string/#/ends-with)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.endswith). \nWhether strings ends with given string\n\n#### str.hyphenToCamel() _(es5-ext/string/#/hyphen-to-camel)_\n\nConvert hyphen separated string to camelCase, e.g. one-two-three -> oneTwoThree.\nUseful when converting names from filename convention to js property name convention.\n\n#### str.indent(str[, count]) _(es5-ext/string/#/indent)_\n\nIndents each line with provided _str_ (if _count_ given then _str_ is repeated _count_ times).\n\n#### str.last() _(es5-ext/string/#/last)_\n\nReturn last character\n\n#### str.normalize([form]) _(es5-ext/string/#/normalize)_\n\n[_Introduced with ECMAScript 6_](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize). \nReturns the Unicode Normalization Form of a given string. \nBased on Matsuza\'s version. Code used for integrated shim can be found at [github.com/walling/unorm](https://github.com/walling/unorm/blob/master/lib/unorm.js)\n\n#### str.pad(fill[, length]) _(es5-ext/string/#/pad)_\n\nPad string with _fill_.\nIf _length_ si given than _fill_ is reapated _length_ times.\nIf _length_ is negative then pad is applied from right.\n\n#### str.repeat(n) _(es5-ext/string/#/repeat)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.repeat). \nRepeat given string _n_ times\n\n#### str.plainReplace(search, replace) _(es5-ext/string/#/plain-replace)_\n\nSimple `replace` version. Doesn\'t support regular expressions. Replaces just first occurrence of search string. Doesn\'t support insert patterns, therefore it is safe to replace text with text obtained programmatically (there\'s no need for additional _$_ characters escape in such case).\n\n#### str.plainReplaceAll(search, replace) _(es5-ext/string/#/plain-replace-all)_\n\nSimple `replace` version. Doesn\'t support regular expressions. Replaces all occurrences of search string. Doesn\'t support insert patterns, therefore it is safe to replace text with text obtained programmatically (there\'s no need for additional _$_ characters escape in such case).\n\n#### str.startsWith(searchString[, position]) _(es5-ext/string/#/starts-with)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype.startswith). \nWhether strings starts with given string\n\n#### str[@@iterator] _(es5-ext/string/#/@@iterator)_\n\n[_Introduced with ECMAScript 6_](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-string.prototype-@@iterator). \nReturns iterator object which traverses all string characters (with respect to unicode symbols)\n\n### Tests [![Build Status](https://travis-ci.org/medikoo/es5-ext.png)](https://travis-ci.org/medikoo/es5-ext)\n\n\t$ npm test\n',
46967 silly install resolved readmeFilename: 'README.md',
46967 silly install resolved bugs: { url: 'https://github.com/medikoo/es5-ext/issues' },
46967 silly install resolved homepage: 'https://github.com/medikoo/es5-ext#readme',
46967 silly install resolved _id: 'es5-ext@0.10.7',
46967 silly install resolved _shasum: 'dfaea50721301042e2d89c1719d43493fa821656',
46967 silly install resolved _resolved: 'https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.7.tgz',
46967 silly install resolved _from: 'https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.7.tgz' } ]
46968 info install d@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46969 info install es6-iterator@0.1.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46970 info install event-emitter@0.3.3 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46971 info install es6-symbol@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46972 info install es6-set@0.1.1 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46973 info install es5-ext@0.10.7 into /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map
46974 info installOne d@0.1.1
46975 verbose installOne of d to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46976 info installOne es6-iterator@0.1.3
46977 verbose installOne of es6-iterator to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46978 info installOne event-emitter@0.3.3
46979 verbose installOne of event-emitter to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46980 info installOne es6-symbol@0.1.1
46981 verbose installOne of es6-symbol to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46982 info installOne es6-set@0.1.1
46983 verbose installOne of es6-set to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46984 info installOne es5-ext@0.10.7
46985 verbose installOne of es5-ext to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map not in flight; installing
46986 verbose lock using /home/lukas/.npm/_locks/es6-symbol-3b6fd521d8db17f4.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
46987 verbose lock using /home/lukas/.npm/_locks/es6-iterator-c58d33e1ebb32e18.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
46988 verbose lock using /home/lukas/.npm/_locks/d-d40e48c2543d075e.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
46989 verbose lock using /home/lukas/.npm/_locks/es5-ext-caa4871267043e57.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
46990 verbose lock using /home/lukas/.npm/_locks/d-4d8782ba1297a240.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
46991 verbose lock using /home/lukas/.npm/_locks/es6-iterator-0f4d53d61a717a67.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
46992 verbose lock using /home/lukas/.npm/_locks/event-emitter-3adc1d7305392244.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
46993 verbose lock using /home/lukas/.npm/_locks/es6-symbol-eee1f9f009148593.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
46994 verbose lock using /home/lukas/.npm/_locks/es6-set-d130c630fc87d4cc.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
46995 silly install write writing es6-symbol 2.0.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
46996 silly install write writing es6-iterator 0.1.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
46997 silly install write writing d 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
46998 silly install write writing es5-ext 0.10.7 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
46999 silly install write writing d 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
47000 silly install write writing es6-iterator 0.1.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
47001 verbose lock using /home/lukas/.npm/_locks/es5-ext-a0389f994011aec1.lock for /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47002 silly install write writing event-emitter 0.3.3 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
47003 silly install write writing es6-symbol 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
47004 silly install write writing es6-set 0.1.1 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
47005 silly install write writing es5-ext 0.10.7 to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47006 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
47007 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
47008 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
47009 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
47010 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
47011 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
47012 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
47013 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47014 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext is being purged from base /home/lukas/ffsync/fxa-auth-server
47015 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
47016 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol is being purged from base /home/lukas/ffsync/fxa-auth-server
47017 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
47018 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
47019 verbose unbuild node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
47020 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator is being purged from base /home/lukas/ffsync/fxa-auth-server
47021 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
47022 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator is being purged from base /home/lukas/ffsync/fxa-auth-server
47023 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
47024 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol is being purged from base /home/lukas/ffsync/fxa-auth-server
47025 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
47026 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set is being purged from base /home/lukas/ffsync/fxa-auth-server
47027 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
47028 verbose tar unpack /home/lukas/.npm/es5-ext/0.10.7/package.tgz
47029 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
47030 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext is being purged
47031 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext
47032 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter is being purged from base /home/lukas/ffsync/fxa-auth-server
47033 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
47034 verbose tar unpack /home/lukas/.npm/es6-symbol/2.0.1/package.tgz
47035 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
47036 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol is being purged
47037 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-symbol
47038 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext is being purged from base /home/lukas/ffsync/fxa-auth-server
47039 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47040 verbose tar unpack /home/lukas/.npm/es6-iterator/0.1.3/package.tgz
47041 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
47042 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator is being purged
47043 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es6-iterator
47044 verbose tar unpack /home/lukas/.npm/es6-iterator/0.1.3/package.tgz
47045 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
47046 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator is being purged
47047 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-iterator
47048 verbose tar unpack /home/lukas/.npm/es6-symbol/0.1.1/package.tgz
47049 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
47050 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol is being purged
47051 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-symbol
47052 verbose tar unpack /home/lukas/.npm/es6-set/0.1.1/package.tgz
47053 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
47054 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set is being purged
47055 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es6-set
47056 silly gunzTarPerm modes [ '775', '664' ]
47057 verbose tar unpack /home/lukas/.npm/event-emitter/0.3.3/package.tgz
47058 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
47059 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter is being purged
47060 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/event-emitter
47061 silly gunzTarPerm modes [ '775', '664' ]
47062 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d is being purged from base /home/lukas/ffsync/fxa-auth-server
47063 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
47064 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d is being purged from base /home/lukas/ffsync/fxa-auth-server
47065 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
47066 verbose tar unpack /home/lukas/.npm/es5-ext/0.10.7/package.tgz
47067 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47068 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext is being purged
47069 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/es5-ext
47070 silly gunzTarPerm modes [ '775', '664' ]
47071 silly gunzTarPerm modes [ '775', '664' ]
47072 silly gunzTarPerm modes [ '775', '664' ]
47073 silly gunzTarPerm modes [ '775', '664' ]
47074 silly gunzTarPerm modes [ '775', '664' ]
47075 verbose tar unpack /home/lukas/.npm/d/0.1.1/package.tgz
47076 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
47077 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d is being purged
47078 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-map/node_modules/d
47079 verbose tar unpack /home/lukas/.npm/d/0.1.1/package.tgz
47080 verbose tar unpacking to /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
47081 silly gentlyRm /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d is being purged
47082 verbose gentlyRm don't care about contents; nuking /home/lukas/ffsync/fxa-auth-server/node_modules/fxa-auth-db-mysql/node_modules/grunt-eslint/node_modules/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/d
47083 silly gunzTarPerm modes [ '775', '664' ]
47084 silly gunzTarPerm modes [ '775', '664' ]
47085 silly gunzTarPerm modes [ '775', '664' ]
47086 silly gunzTarPerm extractEntry package.json
47087 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47088 silly gunzTarPerm extractEntry package.json
47089 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47090 silly gunzTarPerm extractEntry package.json
47091 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47092 silly gunzTarPerm extractEntry package.json
47093 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47094 silly gunzTarPerm extractEntry package.json
47095 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47096 silly gunzTarPerm extractEntry package.json
47097 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47098 silly gunzTarPerm extractEntry package.json
47099 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47100 silly gunzTarPerm extractEntry package.json
47101 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47102 silly gunzTarPerm extractEntry package.json
47103 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47104 silly gunzTarPerm extractEntry package.json
47105 silly gunzTarPerm modified mode [ 'package.json', 420, 436 ]
47106 silly gunzTarPerm extractEntry .npmignore
47107 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47108 silly gunzTarPerm extractEntry README.md
47109 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47110 silly gunzTarPerm extractEntry .npmignore
47111 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47112 silly gunzTarPerm extractEntry README.md
47113 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47114 silly gunzTarPerm extractEntry .npmignore
47115 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47116 silly gunzTarPerm extractEntry README.md
47117 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47118 silly gunzTarPerm extractEntry .npmignore
47119 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47120 silly gunzTarPerm extractEntry README.md
47121 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47122 silly gunzTarPerm extractEntry .npmignore
47123 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47124 silly gunzTarPerm extractEntry README.md
47125 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47126 silly gunzTarPerm extractEntry .npmignore
47127 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47128 silly gunzTarPerm extractEntry README.md
47129 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47130 silly gunzTarPerm extractEntry .npmignore
47131 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47132 silly gunzTarPerm extractEntry README.md
47133 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47134 silly gunzTarPerm extractEntry .npmignore
47135 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47136 silly gunzTarPerm extractEntry README.md
47137 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47138 silly gunzTarPerm extractEntry .npmignore
47139 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47140 silly gunzTarPerm extractEntry README.md
47141 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47142 silly gunzTarPerm extractEntry .npmignore
47143 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
47144 silly gunzTarPerm extractEntry README.md
47145 silly gunzTarPerm modified mode [ 'README.md', 420, 436 ]
47146 silly gunzTarPerm extractEntry LICENSE
47147 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47148 silly gunzTarPerm extractEntry LICENSE
47149 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47150 silly gunzTarPerm extractEntry valid-iterable.js
47151 silly gunzTarPerm modified mode [ 'valid-iterable.js', 420, 436 ]
47152 silly gunzTarPerm extractEntry LICENCE
47153 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
47154 silly gunzTarPerm extractEntry polyfill.js
47155 silly gunzTarPerm modified mode [ 'polyfill.js', 420, 436 ]
47156 silly gunzTarPerm extractEntry LICENSE
47157 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47158 silly gunzTarPerm extractEntry LICENSE
47159 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47160 silly gunzTarPerm extractEntry pipe.js
47161 silly gunzTarPerm modified mode [ 'pipe.js', 420, 436 ]
47162 silly gunzTarPerm extractEntry LICENSE
47163 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47164 silly gunzTarPerm extractEntry valid-iterable.js
47165 silly gunzTarPerm modified mode [ 'valid-iterable.js', 420, 436 ]
47166 silly gunzTarPerm extractEntry LICENCE
47167 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
47168 silly gunzTarPerm extractEntry auto-bind.js
47169 silly gunzTarPerm modified mode [ 'auto-bind.js', 420, 436 ]
47170 silly gunzTarPerm extractEntry LICENSE
47171 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
47172 silly gunzTarPerm extractEntry polyfill.js
47173 silly gunzTarPerm modified mode [ 'polyfill.js', 420, 436 ]
47174 silly gunzTarPerm extractEntry LICENCE
47175 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
47176 silly gunzTarPerm extractEntry auto-bind.js
47177 silly gunzTarPerm modified mode [ 'auto-bind.js', 420, 436 ]
47178 silly gunzTarPerm extractEntry LICENCE
47179 silly gunzTarPerm modified mode [ 'LICENCE', 420, 436 ]
47180 silly gunzTarPerm extractEntry polyfill.js
47181 silly gunzTarPerm modified mode [ 'polyfill.js', 420, 436 ]
47182 silly gunzTarPerm extractEntry global.js
47183 silly gunzTarPerm modified mode [ 'global.js', 420, 436 ]
47184 silly gunzTarPerm extractEntry index.js
47185 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47186 silly gunzTarPerm extractEntry .lintignore
47187 silly gunzTarPerm modified mode [ '.lintignore', 420, 436 ]
47188 silly gunzTarPerm extractEntry string.js
47189 silly gunzTarPerm modified mode [ 'string.js', 420, 436 ]
47190 silly gunzTarPerm extractEntry is-iterable.js
47191 silly gunzTarPerm modified mode [ 'is-iterable.js', 420, 436 ]
47192 silly gunzTarPerm extractEntry implement.js
47193 silly gunzTarPerm modified mode [ 'implement.js', 420, 436 ]
47194 silly gunzTarPerm extractEntry index.js
47195 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47196 silly gunzTarPerm extractEntry global.js
47197 silly gunzTarPerm modified mode [ 'global.js', 420, 436 ]
47198 silly gunzTarPerm extractEntry index.js
47199 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47200 silly gunzTarPerm extractEntry .lintignore
47201 silly gunzTarPerm modified mode [ '.lintignore', 420, 436 ]
47202 silly gunzTarPerm extractEntry index.js
47203 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47204 silly gunzTarPerm extractEntry all-off.js
47205 silly gunzTarPerm modified mode [ 'all-off.js', 420, 436 ]
47206 silly gunzTarPerm extractEntry string.js
47207 silly gunzTarPerm modified mode [ 'string.js', 420, 436 ]
47208 silly gunzTarPerm extractEntry is-iterable.js
47209 silly gunzTarPerm modified mode [ 'is-iterable.js', 420, 436 ]
47210 silly gunzTarPerm extractEntry array/valid-array.js
47211 silly gunzTarPerm modified mode [ 'array/valid-array.js', 420, 436 ]
47212 silly gunzTarPerm extractEntry index.js
47213 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47214 silly gunzTarPerm extractEntry lazy.js
47215 silly gunzTarPerm modified mode [ 'lazy.js', 420, 436 ]
47216 silly gunzTarPerm extractEntry implement.js
47217 silly gunzTarPerm modified mode [ 'implement.js', 420, 436 ]
47218 silly gunzTarPerm extractEntry index.js
47219 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47220 silly gunzTarPerm extractEntry index.js
47221 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47222 silly gunzTarPerm extractEntry lazy.js
47223 silly gunzTarPerm modified mode [ 'lazy.js', 420, 436 ]
47224 silly gunzTarPerm extractEntry is-set.js
47225 silly gunzTarPerm modified mode [ 'is-set.js', 420, 436 ]
47226 silly gunzTarPerm extractEntry implement.js
47227 silly gunzTarPerm modified mode [ 'implement.js', 420, 436 ]
47228 silly gunzTarPerm extractEntry array/valid-array.js
47229 silly gunzTarPerm modified mode [ 'array/valid-array.js', 420, 436 ]
47230 silly gunzTarPerm extractEntry array/_sub-array-dummy-safe.js
47231 silly gunzTarPerm modified mode [ 'array/_sub-array-dummy-safe.js', 420, 436 ]
47232 silly gunzTarPerm extractEntry array/_sub-array-dummy-safe.js
47233 silly gunzTarPerm modified mode [ 'array/_sub-array-dummy-safe.js', 420, 436 ]
47234 silly gunzTarPerm extractEntry array.js
47235 silly gunzTarPerm modified mode [ 'array.js', 420, 436 ]
47236 silly gunzTarPerm extractEntry get.js
47237 silly gunzTarPerm modified mode [ 'get.js', 420, 436 ]
47238 silly gunzTarPerm extractEntry is-symbol.js
47239 silly gunzTarPerm modified mode [ 'is-symbol.js', 420, 436 ]
47240 silly gunzTarPerm extractEntry is-native-implemented.js
47241 silly gunzTarPerm modified mode [ 'is-native-implemented.js', 420, 436 ]
47242 silly gunzTarPerm extractEntry has-listeners.js
47243 silly gunzTarPerm modified mode [ 'has-listeners.js', 420, 436 ]
47244 silly gunzTarPerm extractEntry unify.js
47245 silly gunzTarPerm modified mode [ 'unify.js', 420, 436 ]
47246 silly gunzTarPerm extractEntry .lint
47247 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47248 silly gunzTarPerm extractEntry CHANGES
47249 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47250 silly gunzTarPerm extractEntry .travis.yml
47251 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
47252 silly gunzTarPerm extractEntry .testignore
47253 silly gunzTarPerm modified mode [ '.testignore', 420, 436 ]
47254 silly gunzTarPerm extractEntry test/all-off.js
47255 silly gunzTarPerm modified mode [ 'test/all-off.js', 420, 436 ]
47256 silly gunzTarPerm extractEntry test/has-listeners.js
47257 silly gunzTarPerm modified mode [ 'test/has-listeners.js', 420, 436 ]
47258 silly gunzTarPerm extractEntry test/index.js
47259 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
47260 silly gunzTarPerm extractEntry test/pipe.js
47261 silly gunzTarPerm modified mode [ 'test/pipe.js', 420, 436 ]
47262 silly gunzTarPerm extractEntry test/unify.js
47263 silly gunzTarPerm modified mode [ 'test/unify.js', 420, 436 ]
47264 silly gunzTarPerm extractEntry benchmark/many-on.js
47265 silly gunzTarPerm modified mode [ 'benchmark/many-on.js', 420, 436 ]
47266 silly gunzTarPerm extractEntry benchmark/single-on.js
47267 silly gunzTarPerm modified mode [ 'benchmark/single-on.js', 420, 436 ]
47268 silly gunzTarPerm extractEntry array.js
47269 silly gunzTarPerm modified mode [ 'array.js', 420, 436 ]
47270 silly gunzTarPerm extractEntry get.js
47271 silly gunzTarPerm modified mode [ 'get.js', 420, 436 ]
47272 silly gunzTarPerm extractEntry .lint
47273 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47274 silly gunzTarPerm extractEntry .travis.yml
47275 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
47276 silly gunzTarPerm extractEntry CHANGES
47277 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47278 silly gunzTarPerm extractEntry test/auto-bind.js
47279 silly gunzTarPerm modified mode [ 'test/auto-bind.js', 420, 436 ]
47280 silly gunzTarPerm extractEntry test/index.js
47281 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
47282 silly gunzTarPerm extractEntry test/lazy.js
47283 silly gunzTarPerm modified mode [ 'test/lazy.js', 420, 436 ]
47284 silly gunzTarPerm extractEntry is-symbol.js
47285 silly gunzTarPerm modified mode [ 'is-symbol.js', 420, 436 ]
47286 silly gunzTarPerm extractEntry is-native-implemented.js
47287 silly gunzTarPerm modified mode [ 'is-native-implemented.js', 420, 436 ]
47288 silly gunzTarPerm extractEntry .lint
47289 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47290 silly gunzTarPerm extractEntry .travis.yml
47291 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
47292 silly gunzTarPerm extractEntry CHANGES
47293 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47294 silly gunzTarPerm extractEntry test/auto-bind.js
47295 silly gunzTarPerm modified mode [ 'test/auto-bind.js', 420, 436 ]
47296 silly gunzTarPerm extractEntry test/index.js
47297 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
47298 silly gunzTarPerm extractEntry test/lazy.js
47299 silly gunzTarPerm modified mode [ 'test/lazy.js', 420, 436 ]
47300 silly gunzTarPerm extractEntry index.js
47301 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47302 silly gunzTarPerm extractEntry is-native-implemented.js
47303 silly gunzTarPerm modified mode [ 'is-native-implemented.js', 420, 436 ]
47304 silly gunzTarPerm extractEntry array/_sub-array-dummy.js
47305 silly gunzTarPerm modified mode [ 'array/_sub-array-dummy.js', 420, 436 ]
47306 silly gunzTarPerm extractEntry array/to-array.js
47307 silly gunzTarPerm modified mode [ 'array/to-array.js', 420, 436 ]
47308 silly gunzTarPerm extractEntry array/_sub-array-dummy.js
47309 silly gunzTarPerm modified mode [ 'array/_sub-array-dummy.js', 420, 436 ]
47310 silly gunzTarPerm extractEntry array/to-array.js
47311 silly gunzTarPerm modified mode [ 'array/to-array.js', 420, 436 ]
47312 silly gunzTarPerm extractEntry index.js
47313 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47314 silly gunzTarPerm extractEntry valid-symbol.js
47315 silly gunzTarPerm modified mode [ 'valid-symbol.js', 420, 436 ]
47316 silly gunzTarPerm extractEntry is-implemented.js
47317 silly gunzTarPerm modified mode [ 'is-implemented.js', 420, 436 ]
47318 silly gunzTarPerm extractEntry index.js
47319 silly gunzTarPerm modified mode [ 'index.js', 420, 436 ]
47320 silly gunzTarPerm extractEntry validate-symbol.js
47321 silly gunzTarPerm modified mode [ 'validate-symbol.js', 420, 436 ]
47322 silly gunzTarPerm extractEntry is-implemented.js
47323 silly gunzTarPerm modified mode [ 'is-implemented.js', 420, 436 ]
47324 silly gunzTarPerm extractEntry .lint
47325 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47326 silly gunzTarPerm extractEntry CHANGES
47327 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47328 silly gunzTarPerm extractEntry .travis.yml
47329 silly gunzTarPerm modified mode [ '.travis.yml', 420, 436 ]
47330 silly gunzTarPerm extractEntry test/implement.js
47331 silly gunzTarPerm modified mode [ 'test/implement.js', 420, 436 ]
47332 silly gunzTarPerm extractEntry test/index.js
47333 silly gunzTarPerm modified mode [ 'test/index.js', 420, 436 ]
47334 silly gunzTarPerm extractEntry test/is-implemented.js
47335 silly gunzTarPerm modified mode [ 'test/is-implemented.js', 420, 436 ]
47336 silly gunzTarPerm extractEntry test/is-native-implemented.js
47337 silly gunzTarPerm modified mode [ 'test/is-native-implemented.js', 420, 436 ]
47338 silly gunzTarPerm extractEntry test/is-symbol.js
47339 silly gunzTarPerm modified mode [ 'test/is-symbol.js', 420, 436 ]
47340 silly gunzTarPerm extractEntry test/polyfill.js
47341 silly gunzTarPerm modified mode [ 'test/polyfill.js', 420, 436 ]
47342 silly gunzTarPerm extractEntry test/validate-symbol.js
47343 silly gunzTarPerm modified mode [ 'test/validate-symbol.js', 420, 436 ]
47344 silly gunzTarPerm extractEntry valid-set.js
47345 silly gunzTarPerm modified mode [ 'valid-set.js', 420, 436 ]
47346 silly gunzTarPerm extractEntry is-implemented.js
47347 silly gunzTarPerm modified mode [ 'is-implemented.js', 420, 436 ]
47348 silly gunzTarPerm extractEntry array/_is-extensible.js
47349 silly gunzTarPerm modified mode [ 'array/_is-extensible.js', 420, 436 ]
47350 silly gunzTarPerm extractEntry array/index.js
47351 silly gunzTarPerm modified mode [ 'array/index.js', 420, 436 ]
47352 silly gunzTarPerm extractEntry array/_is-extensible.js
47353 silly gunzTarPerm modified mode [ 'array/_is-extensible.js', 420, 436 ]
47354 silly gunzTarPerm extractEntry array/index.js
47355 silly gunzTarPerm modified mode [ 'array/index.js', 420, 436 ]
47356 silly gunzTarPerm extractEntry for-of.js
47357 silly gunzTarPerm modified mode [ 'for-of.js', 420, 436 ]
47358 silly gunzTarPerm extractEntry CHANGES
47359 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47360 silly gunzTarPerm extractEntry for-of.js
47361 silly gunzTarPerm modified mode [ 'for-of.js', 420, 436 ]
47362 silly gunzTarPerm extractEntry CHANGES
47363 silly gunzTarPerm modified mode [ 'CHANGES', 420, 436 ]
47364 silly gunzTarPerm extractEntry .lint
47365 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47366 silly gunzTarPerm extractEntry .lint
47367 silly gunzTarPerm modified mode [ '.lint', 420, 436 ]
47368 silly gunzTarPerm extractEntry array/is-plain-array.js
47369 silly gunzTarPerm m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment