├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── discussion.md │ └── feature_request.md ├── move.yml ├── org-project-bot.yaml └── pull_request_template.md ├── .gitignore ├── .jsdoc.json ├── .mochaReportersConfig.json ├── .npmignore ├── .releaserc.js ├── .tidelift.yml ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── codecov.yml ├── index.md ├── package.json ├── src ├── functional.js ├── hashing.js ├── index.js ├── op.js ├── sequence.js ├── stdtraits.js ├── string.js ├── trait.js └── typesafe.js └── test ├── hashing.test.js ├── sequence.test.js ├── stdtraits.test.js ├── trait.test.js ├── typesafe.test.js └── util.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.github/ISSUE_TEMPLATE/discussion.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/move.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.github/move.yml -------------------------------------------------------------------------------- /.github/org-project-bot.yaml: -------------------------------------------------------------------------------- 1 | columns: 2 | - 2998585 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /.mochaReportersConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.mochaReportersConfig.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.npmignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.releaserc.js -------------------------------------------------------------------------------- /.tidelift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.tidelift.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/codecov.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/package.json -------------------------------------------------------------------------------- /src/functional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/functional.js -------------------------------------------------------------------------------- /src/hashing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/hashing.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/index.js -------------------------------------------------------------------------------- /src/op.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/op.js -------------------------------------------------------------------------------- /src/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/sequence.js -------------------------------------------------------------------------------- /src/stdtraits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/stdtraits.js -------------------------------------------------------------------------------- /src/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/string.js -------------------------------------------------------------------------------- /src/trait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/trait.js -------------------------------------------------------------------------------- /src/typesafe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/src/typesafe.js -------------------------------------------------------------------------------- /test/hashing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/hashing.test.js -------------------------------------------------------------------------------- /test/sequence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/sequence.test.js -------------------------------------------------------------------------------- /test/stdtraits.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/stdtraits.test.js -------------------------------------------------------------------------------- /test/trait.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/trait.test.js -------------------------------------------------------------------------------- /test/typesafe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/typesafe.test.js -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/ferrum/HEAD/test/util.js --------------------------------------------------------------------------------