├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml └── workflows │ ├── node-aught.yml │ ├── node-pretest.yml │ ├── node-tens.yml │ ├── node-twenties.yml │ ├── rebase.yml │ └── require-allow-edits.yml ├── .gitignore ├── .npmrc ├── .nycrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── es2015.d.ts ├── es2015.js ├── es5.d.ts ├── es5.js ├── es6.d.ts ├── es6.js ├── helpers └── isPrimitive.js ├── index.d.ts ├── index.js ├── package.json ├── test ├── es2015.js ├── es5.js ├── es6.js └── index.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/node-aught.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/node-aught.yml -------------------------------------------------------------------------------- /.github/workflows/node-pretest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/node-pretest.yml -------------------------------------------------------------------------------- /.github/workflows/node-tens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/node-tens.yml -------------------------------------------------------------------------------- /.github/workflows/node-twenties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/node-twenties.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/require-allow-edits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.github/workflows/require-allow-edits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | allow-same-version=true 3 | message=v%s 4 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/.nycrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/README.md -------------------------------------------------------------------------------- /es2015.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es2015.d.ts -------------------------------------------------------------------------------- /es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es2015.js -------------------------------------------------------------------------------- /es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es5.d.ts -------------------------------------------------------------------------------- /es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es5.js -------------------------------------------------------------------------------- /es6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es6.d.ts -------------------------------------------------------------------------------- /es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/es6.js -------------------------------------------------------------------------------- /helpers/isPrimitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/helpers/isPrimitive.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/package.json -------------------------------------------------------------------------------- /test/es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/test/es2015.js -------------------------------------------------------------------------------- /test/es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/test/es5.js -------------------------------------------------------------------------------- /test/es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/test/es6.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljharb/es-to-primitive/HEAD/tsconfig.json --------------------------------------------------------------------------------