├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── benchmark ├── fixture.json ├── index.js └── shallow.js ├── default.js ├── index.d.ts ├── index.js ├── index.test-d.ts ├── package.json ├── readme.md └── test └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | .vscode 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output 2 | .editorconfig 3 | coverage 4 | benchmark 5 | .travis.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/LICENSE -------------------------------------------------------------------------------- /benchmark/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/benchmark/fixture.json -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /benchmark/shallow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/benchmark/shallow.js -------------------------------------------------------------------------------- /default.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./index.js')() 4 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/index.js -------------------------------------------------------------------------------- /index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/index.test-d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/readme.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidmarkclements/rfdc/HEAD/test/index.js --------------------------------------------------------------------------------