├── .eslintignore ├── .eslintrc.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── History.md ├── LICENSE ├── Readme.md ├── appveyor.yml ├── benchmark ├── index.js ├── wrapfunction.js └── wrapproperty.js ├── files └── message.png ├── index.js ├── lib └── browser │ └── index.js ├── package.json └── test ├── .eslintrc.yml ├── browserify.js ├── fixtures ├── libs │ ├── cool.js │ ├── index.js │ ├── multi.js │ ├── my.js │ ├── new.js │ ├── old.js │ ├── strict.js │ ├── thing.js │ └── trace.js └── script.js ├── support └── capture-stderr.js └── test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | coverage 3 | node_modules 4 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/Readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /benchmark/wrapfunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/benchmark/wrapfunction.js -------------------------------------------------------------------------------- /benchmark/wrapproperty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/benchmark/wrapproperty.js -------------------------------------------------------------------------------- /files/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/files/message.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/index.js -------------------------------------------------------------------------------- /lib/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/lib/browser/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | -------------------------------------------------------------------------------- /test/browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/browserify.js -------------------------------------------------------------------------------- /test/fixtures/libs/cool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/cool.js -------------------------------------------------------------------------------- /test/fixtures/libs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/index.js -------------------------------------------------------------------------------- /test/fixtures/libs/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/multi.js -------------------------------------------------------------------------------- /test/fixtures/libs/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/my.js -------------------------------------------------------------------------------- /test/fixtures/libs/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/new.js -------------------------------------------------------------------------------- /test/fixtures/libs/old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/old.js -------------------------------------------------------------------------------- /test/fixtures/libs/strict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/strict.js -------------------------------------------------------------------------------- /test/fixtures/libs/thing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/thing.js -------------------------------------------------------------------------------- /test/fixtures/libs/trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/libs/trace.js -------------------------------------------------------------------------------- /test/fixtures/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/fixtures/script.js -------------------------------------------------------------------------------- /test/support/capture-stderr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/support/capture-stderr.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougwilson/nodejs-depd/HEAD/test/test.js --------------------------------------------------------------------------------