├── .github └── workflows │ ├── coverage.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── LICENCE ├── README.md ├── bower.json ├── clues.js ├── package.json ├── test ├── args-start-test.js ├── array-functions-test.js ├── array-private-scope-test.js ├── arrow-fn-test.js ├── async-test.js ├── caller-fullref-test.js ├── cancel-test.js ├── class-fn-test.js ├── complex-test.js ├── duration-test.js ├── error-test.js ├── external-test.js ├── facts-test.js ├── freeze-test.js ├── global-test.js ├── inject-test.js ├── logic-as-function-test.js ├── logic-as-promise-test.js ├── null-logic-test.js ├── optimization-test.js ├── optional-test.js ├── private-test.js ├── promise-to-function.js ├── property-test.js ├── recursive-test.js ├── service-test.js └── undefined-test.js └── util ├── README.md ├── inject.js ├── reptiles-client.js └── reptiles-server.js /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /.nyc_output/ 2 | /coverage/ -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/bower.json -------------------------------------------------------------------------------- /clues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/clues.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/package.json -------------------------------------------------------------------------------- /test/args-start-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/args-start-test.js -------------------------------------------------------------------------------- /test/array-functions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/array-functions-test.js -------------------------------------------------------------------------------- /test/array-private-scope-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/array-private-scope-test.js -------------------------------------------------------------------------------- /test/arrow-fn-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/arrow-fn-test.js -------------------------------------------------------------------------------- /test/async-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/async-test.js -------------------------------------------------------------------------------- /test/caller-fullref-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/caller-fullref-test.js -------------------------------------------------------------------------------- /test/cancel-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/cancel-test.js -------------------------------------------------------------------------------- /test/class-fn-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/class-fn-test.js -------------------------------------------------------------------------------- /test/complex-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/complex-test.js -------------------------------------------------------------------------------- /test/duration-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/duration-test.js -------------------------------------------------------------------------------- /test/error-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/error-test.js -------------------------------------------------------------------------------- /test/external-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/external-test.js -------------------------------------------------------------------------------- /test/facts-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/facts-test.js -------------------------------------------------------------------------------- /test/freeze-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/freeze-test.js -------------------------------------------------------------------------------- /test/global-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/global-test.js -------------------------------------------------------------------------------- /test/inject-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/inject-test.js -------------------------------------------------------------------------------- /test/logic-as-function-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/logic-as-function-test.js -------------------------------------------------------------------------------- /test/logic-as-promise-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/logic-as-promise-test.js -------------------------------------------------------------------------------- /test/null-logic-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/null-logic-test.js -------------------------------------------------------------------------------- /test/optimization-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/optimization-test.js -------------------------------------------------------------------------------- /test/optional-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/optional-test.js -------------------------------------------------------------------------------- /test/private-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/private-test.js -------------------------------------------------------------------------------- /test/promise-to-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/promise-to-function.js -------------------------------------------------------------------------------- /test/property-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/property-test.js -------------------------------------------------------------------------------- /test/recursive-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/recursive-test.js -------------------------------------------------------------------------------- /test/service-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/service-test.js -------------------------------------------------------------------------------- /test/undefined-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/test/undefined-test.js -------------------------------------------------------------------------------- /util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/util/README.md -------------------------------------------------------------------------------- /util/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/util/inject.js -------------------------------------------------------------------------------- /util/reptiles-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/util/reptiles-client.js -------------------------------------------------------------------------------- /util/reptiles-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJONSSON/clues/HEAD/util/reptiles-server.js --------------------------------------------------------------------------------