├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── REQUIREMENTS.md ├── doc ├── config.md ├── contrib.md ├── dev.md ├── internal.md ├── papers ├── tutorial │ ├── 0 │ │ ├── deps │ │ │ ├── log.js │ │ │ └── serial.js │ │ ├── main.js │ │ └── secret │ │ │ └── dbc.json │ ├── 1 │ │ ├── deps │ │ │ └── math.js │ │ └── main.js │ ├── 2 │ │ ├── dynamic.json │ │ ├── lya.js │ │ └── main.js │ ├── 3 │ │ ├── dynamic.json │ │ ├── lya.js │ │ └── main.js │ ├── README.md │ ├── analyses │ │ ├── call-adv │ │ │ └── main.js │ │ ├── call-freq │ │ │ ├── main.js │ │ │ └── math.js │ │ ├── call-times │ │ │ ├── m1.js │ │ │ ├── m2.js │ │ │ └── m3.js │ │ ├── coarse-types │ │ │ └── main.js │ │ ├── export-types-eff │ │ │ ├── main.js │ │ │ └── math.js │ │ ├── export-types │ │ │ ├── main.js │ │ │ └── math.js │ │ ├── global-only │ │ │ ├── add.js │ │ │ ├── dynamic.json │ │ │ └── main.js │ │ ├── imports │ │ │ ├── m1.js │ │ │ ├── m2.js │ │ │ └── main.js │ │ ├── main.js │ │ ├── on-off-enforce │ │ │ └── main.js │ │ ├── on-off │ │ │ └── main.js │ │ ├── rwx │ │ │ ├── m1.js │ │ │ ├── m2.js │ │ │ ├── m3.js │ │ │ ├── m4.js │ │ │ └── main.js │ │ └── uncomment │ │ │ └── main.js │ ├── hooks │ │ ├── onCallPre-Analysis.js │ │ ├── onCallPre.js │ │ ├── onConstruct-Analysis.js │ │ ├── onConstruct.js │ │ ├── onHas-Analysis.js │ │ ├── onHas.js │ │ ├── onImport-Analysis.js │ │ ├── onImport.js │ │ ├── onRead-Analysis.js │ │ ├── onRead-Write.js │ │ ├── onWrite-Analysis.js │ │ ├── sourceTransform-Analysis.js │ │ └── sourceTransform.js │ ├── icfp20.md │ ├── slides │ │ ├── context │ │ │ ├── exclude │ │ │ │ ├── correct.json │ │ │ │ ├── correct.pwd.json │ │ │ │ ├── dynamic.json │ │ │ │ ├── generated.test │ │ │ │ ├── m1.js │ │ │ │ ├── m2.js │ │ │ │ └── main.js │ │ │ └── include │ │ │ │ ├── correct.json │ │ │ │ ├── correct.pwd.json │ │ │ │ ├── dynamic.json │ │ │ │ ├── generated.test │ │ │ │ ├── m1.js │ │ │ │ ├── m2.js │ │ │ │ └── main.js │ │ ├── fields │ │ │ ├── exclude │ │ │ │ ├── correct.json │ │ │ │ ├── correct.pwd.json │ │ │ │ ├── dynamic.json │ │ │ │ ├── generated.test │ │ │ │ ├── m1.js │ │ │ │ ├── m2.js │ │ │ │ └── main.js │ │ │ └── include │ │ │ │ ├── correct.json │ │ │ │ ├── correct.pwd.json │ │ │ │ ├── dynamic.json │ │ │ │ ├── generated.test │ │ │ │ ├── m1.js │ │ │ │ ├── m2.js │ │ │ │ └── main.js │ │ └── module │ │ │ ├── exclude │ │ │ ├── correct.json │ │ │ ├── correct.pwd.json │ │ │ ├── dynamic.json │ │ │ ├── generated.test │ │ │ ├── m1.js │ │ │ ├── m2.js │ │ │ └── main.js │ │ │ └── include │ │ │ ├── correct.json │ │ │ ├── correct.pwd.json │ │ │ ├── dynamic.json │ │ │ ├── generated.test │ │ │ ├── m1.js │ │ │ ├── m2.js │ │ │ └── main.js │ └── users │ │ ├── m1.js │ │ ├── math.js │ │ └── run-lya.js ├── tutorial2 │ ├── bottleneck │ │ └── example.js │ ├── eval │ │ ├── attack.js │ │ ├── http-server.js │ │ └── package.json │ ├── malicious │ │ ├── main.js │ │ ├── package.json │ │ ├── pass.info │ │ └── personal.info │ └── run.sh └── tutorial3 │ ├── bottleneck │ └── example.js │ ├── eval │ ├── attack.js │ ├── http-server.js │ ├── package.json │ └── static.json │ ├── malicious │ ├── main.js │ ├── package.json │ ├── personal.info │ └── static.json │ ├── personal.data │ └── run ├── lya.js ├── package.json ├── src ├── README.md ├── analysis │ ├── access │ │ ├── on-off-enforce.js │ │ ├── on-off.js │ │ ├── rwx-enforcement.js │ │ └── rwx.js │ ├── performance │ │ ├── call-advance.js │ │ ├── call-freq.js │ │ └── call-times.js │ ├── simple │ │ ├── global-only.js │ │ ├── imports.js │ │ ├── sample.js │ │ ├── term-index.js │ │ └── uncomment.js │ └── spec │ │ ├── coarse-types.js │ │ ├── export-type-all.js │ │ ├── export-type-effect.js │ │ ├── export-type.js │ │ └── simple-types.js ├── core.js └── utils │ ├── config.js │ ├── default-names.json │ └── utils.js └── tst ├── .gitignore ├── coarse-types ├── epilogue.lya ├── prologue-profiling.lya ├── run-dynamic.sh ├── t0 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t1 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js ├── t10 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t11 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t12 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t13 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t14 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t15 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t16 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js ├── t17 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js ├── t18 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js ├── t19 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ ├── m3.js │ ├── m4.js │ └── main.js ├── t2 │ ├── RWX.json │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js ├── t3 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t4 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ ├── m3.js │ ├── m4.js │ └── main.js ├── t5 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js ├── t6 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t7 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ └── main.js ├── t8 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── m1.js │ ├── m2.js │ └── main.js └── t9 │ ├── correct.json │ ├── correct.pwd.json │ ├── generated.test │ ├── main.js │ └── math.js ├── eval.js ├── export-types-all ├── .gitignore ├── epilogue.lya ├── prologue-profiling.lya ├── run-dynamic.sh ├── t0 │ ├── correct.pwd.json │ ├── m1.js │ └── main.js ├── t1 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js ├── t2 │ ├── RWX.json │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js ├── t3 │ ├── correct.pwd.json │ ├── main.js │ └── math.js ├── t4 │ ├── correct.pwd.json │ ├── m1.js │ └── main.js ├── t5 │ ├── correct.pwd.json │ ├── m1.js │ └── main.js ├── t6 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js └── t7 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js ├── export-types-effects ├── .gitignore ├── epilogue.lya ├── prologue-profiling.lya ├── run-dynamic.sh ├── t0 │ ├── correct.pwd.json │ ├── main.js │ └── math.js ├── t1 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js └── t2 │ ├── correct.pwd.json │ ├── main.js │ └── math.js ├── export-types ├── .gitignore ├── epilogue.lya ├── prologue-profiling.lya ├── run-dynamic.sh ├── t0 │ ├── correct.pwd.json │ ├── main.js │ └── math.js ├── t1 │ ├── RWX.json │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js └── t2 │ ├── correct.pwd.json │ ├── main.js │ └── math.js ├── imports ├── .gitignore ├── epilogue.lya ├── prologue.lya ├── run-dynamic.sh ├── t0 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js ├── t1 │ ├── correct.pwd.json │ ├── m1.js │ └── main.js ├── t2 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js ├── t3 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js └── t4 │ ├── correct.pwd.json │ └── main.js ├── libs ├── .gitignore └── clone.sh ├── micro-packages ├── .gitignore ├── README.md ├── algebra │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── dist │ │ ├── algebra.js │ │ ├── algebra.min.js │ │ └── algebra.min.js.map │ ├── docs │ │ ├── _config.yml │ │ ├── _data │ │ │ ├── package.json │ │ │ └── tags.json │ │ ├── _includes │ │ │ └── common │ │ │ │ ├── README.md │ │ │ │ ├── analytics.html │ │ │ │ ├── cookieconsent.html │ │ │ │ ├── favicon.html │ │ │ │ ├── footer.html │ │ │ │ ├── js-bundle.html │ │ │ │ ├── meta.html │ │ │ │ ├── nav.html │ │ │ │ └── style.html │ │ ├── _layouts │ │ │ └── common │ │ │ │ ├── README.md │ │ │ │ └── page.html │ │ ├── changelog.md │ │ ├── images │ │ │ ├── Cover-Algebra.png │ │ │ ├── Cover-OnQuaternionsAndOctonions.png │ │ │ └── Mandelbrot.gif │ │ └── index.md │ ├── index.js │ ├── package.json │ ├── src │ │ ├── Boole.js │ │ ├── CompositionAlgebra.js │ │ ├── MatrixSpace.js │ │ ├── Ring.js │ │ ├── Scalar.js │ │ ├── VectorSpace.js │ │ ├── coerced.js │ │ ├── itemsPool.js │ │ ├── realField.js │ │ └── toData.js │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── Complex.js │ │ ├── CompositionAlgebra.js │ │ ├── MatrixSpace.js │ │ ├── Real.js │ │ ├── Scalar.js │ │ ├── VectorSpace.js │ │ ├── api.js │ │ ├── features │ │ ├── methodBinaryOperator.js │ │ ├── methodUnaryOperator.js │ │ ├── staticBinaryOperator.js │ │ └── staticUnaryOperator.js │ │ ├── mocha.opts │ │ └── quickStart.js ├── arr-diff │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── README.md │ │ ├── all.md │ │ ├── check.js │ │ ├── code │ │ │ ├── arr-diff-3.0.0.js │ │ │ ├── arr-diff-4.0.0.js │ │ │ ├── array-differ.js │ │ │ ├── filter.js │ │ │ ├── for-negative.js │ │ │ ├── for.js │ │ │ ├── forEach.js │ │ │ ├── reduce-concat.js │ │ │ ├── reduce-push.js │ │ │ ├── while-arguments.js │ │ │ ├── while-indexof.js │ │ │ ├── while-multi-unshift.js │ │ │ ├── while-multi.js │ │ │ ├── while-push.js │ │ │ ├── while-splice-args.js │ │ │ ├── while-splice-for.js │ │ │ ├── while-splice-pop-flatten.js │ │ │ ├── while-splice-pop.js │ │ │ ├── while-splice-recurse.js │ │ │ ├── while-splice.js │ │ │ └── while-unshift.js │ │ ├── fixtures │ │ │ ├── long-dupes.js │ │ │ ├── long.js │ │ │ ├── med-short.js │ │ │ ├── med.js │ │ │ └── short.js │ │ ├── index.js │ │ └── last.md │ ├── bower.json │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── arr-flatten │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── appveyor.yml │ ├── benchmark │ │ ├── check.js │ │ ├── code │ │ │ ├── arr-flatten-0.1.0 (do-while).js │ │ │ ├── arr-flatten-0.2.0.js │ │ │ ├── arr-flatten-1.0.1.js │ │ │ ├── compute-flatten.js │ │ │ ├── do-while-slice.js │ │ │ ├── flatit.js │ │ │ ├── flatten-array.js │ │ │ ├── flatten.js │ │ │ ├── just-flatten-it.js │ │ │ ├── lib-array-flatten.js │ │ │ ├── lodash.flattendeep.js │ │ │ ├── m_flattened.js │ │ │ └── utils-flatten.js │ │ ├── fixtures │ │ │ ├── med.js │ │ │ ├── small-med.js │ │ │ └── small.js │ │ ├── index.js │ │ └── libs.js │ ├── bower.json │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── array-first │ ├── .gitignore │ ├── .verb.md │ ├── LICENSE │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── array-last │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── check.js │ │ ├── code │ │ │ ├── last.js │ │ │ ├── length.js │ │ │ └── slice.js │ │ ├── fixtures │ │ │ ├── 10.js │ │ │ ├── 1000.js │ │ │ ├── 100000.js │ │ │ ├── 1000000.js │ │ │ └── 200.js │ │ ├── index.js │ │ └── last.md │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── array-range │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE.md │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── array.chunk │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── clone.sh ├── concat-stream │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── _index.js │ ├── collaborators.md │ ├── index.js │ ├── package.json │ ├── readme.md │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── array.js │ │ ├── buffer.js │ │ ├── infer.js │ │ ├── nothing.js │ │ ├── objects.js │ │ ├── server │ │ └── ls.js │ │ ├── string.js │ │ └── typedarray.js ├── count.js ├── create-static.sh ├── deep-bind │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── readme.md │ ├── static.json │ ├── stats.txt │ └── test.js ├── document-ready │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── _index.js │ ├── index.js │ ├── license │ ├── package.json │ ├── readme.md │ ├── static.json │ ├── stats.txt │ └── test.js ├── file-size │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── readme.md │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── conversions.js │ │ ├── exports.js │ │ ├── human.js │ │ └── mocha.opts ├── fs-promise │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── basic.js │ │ ├── mocha.opts │ │ ├── mz.js │ │ └── register.js ├── get-value │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── code │ │ │ ├── for-path-escape-check.js │ │ │ ├── for-path-escape-flag.js │ │ │ ├── for-path-escape.js │ │ │ ├── for.js │ │ │ ├── get-value-fast.js │ │ │ ├── libs │ │ │ │ ├── dot-prop.js │ │ │ │ ├── get-value.js │ │ │ │ ├── getobject.js │ │ │ │ └── object-path.js │ │ │ ├── loop-prop-loop-index.js │ │ │ ├── loop-prop-loop.js │ │ │ ├── loop-prop-regex.js │ │ │ ├── recursive-fn-escape-loop.js │ │ │ ├── recursive-fn-prop-regex.js │ │ │ ├── recursive-fn.js │ │ │ ├── reduce-custom.js │ │ │ ├── reduce.js │ │ │ ├── while-fn-both.js │ │ │ ├── while-fn-optional.js │ │ │ ├── while-has-own.js │ │ │ ├── while-in.js │ │ │ ├── while-path-escape-check.js │ │ │ ├── while-path-escape-flag-no-regex.js │ │ │ ├── while-path-escape-flag.js │ │ │ ├── while-path-escape-no-regex.js │ │ │ ├── while-path-escape.js │ │ │ ├── while-path-fn.js │ │ │ └── while.js │ │ ├── fixtures │ │ │ ├── deep.js │ │ │ ├── escaped.js │ │ │ ├── root.js │ │ │ └── shallow.js │ │ ├── index.js │ │ ├── stats.json │ │ └── stats.md │ ├── examples │ │ ├── arrays.js │ │ ├── functions.js │ │ ├── join.js │ │ ├── keys-with-dots.js │ │ ├── options.default.js │ │ └── options.isValue.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── test.js │ │ └── units.js ├── getInfo.sh ├── getNumberRWX.sh ├── group-array │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── examples │ │ ├── geojson.js │ │ ├── posts.js │ │ ├── tags-function.js │ │ └── tags-property.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── expected │ │ ├── categories-tags.js │ │ ├── deeply-nested.js │ │ ├── insanely-nested.js │ │ ├── issue-10.js │ │ ├── nested.js │ │ └── tags-array.js │ │ ├── fixtures │ │ ├── categories-tags.js │ │ ├── date-function.js │ │ ├── deeply-nested.js │ │ ├── insanely-nested.js │ │ ├── issue-10.js │ │ ├── nested.js │ │ └── tags-array.js │ │ └── test.js ├── has-key-deep │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── has-value │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── he │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── _he.js │ ├── bin │ │ └── he │ ├── bower.json │ ├── component.json │ ├── data │ │ ├── decode-code-points-overrides.json │ │ ├── decode-legacy-named-references.json │ │ ├── decode-map-legacy.json │ │ ├── decode-map-overrides.json │ │ ├── decode-map.json │ │ ├── encode-lone-code-points.json │ │ ├── encode-map.json │ │ ├── encode-paired-symbols.json │ │ ├── entities.json │ │ ├── invalid-character-reference-code-points.json │ │ └── invalid-raw-code-points.json │ ├── he.js │ ├── man │ │ └── he.1 │ ├── package.json │ ├── scripts │ │ ├── ascii-whitelist-regex.js │ │ ├── astral-symbol-regex.js │ │ ├── bmp-whitelist-regex.js │ │ ├── encode-non-ascii-regex.js │ │ ├── export-data.js │ │ ├── invalid-code-points-regex.js │ │ ├── invalid-code-points-string.js │ │ ├── legacy-reference-regex.js │ │ ├── named-reference-regex.js │ │ ├── process-data.js │ │ └── scrape-spec.js │ ├── src │ │ └── he.js │ ├── static.json │ ├── stats.txt │ └── tests │ │ ├── index.html │ │ ├── tests.js │ │ └── tests.src.js ├── identity-function │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ ├── static.json │ ├── stats.txt │ └── test │ │ └── id.js ├── in-array │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── installNode.sh ├── is-empty-object │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── index.js ├── is-generator │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _is-generator.js │ ├── is-generator.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── is-number │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── fixtures.js │ │ ├── index.js │ │ └── last.md │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── is-promise │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── _index.js │ ├── component.json │ ├── index.js │ ├── package.json │ ├── readme.md │ ├── static.json │ ├── stats.txt │ └── test.js ├── is-sorted │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── fixtures.json │ │ └── index.js ├── left-pad │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── perf │ │ ├── O(n).js │ │ ├── es6Repeat.js │ │ └── perf.js │ ├── static.json │ ├── stats.txt │ └── test.js ├── missing-deep-keys │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── test.js │ ├── wallaby.config.js │ └── yarn.lock ├── ndarray │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _ndarray.js │ ├── ndarray.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── test.js ├── node-du │ ├── .gitignore │ ├── .jshintrc │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── du.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── tests.js ├── node-glob │ ├── .github │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── _glob.js │ ├── benchclean.js │ ├── benchmark.sh │ ├── changelog.md │ ├── common.js │ ├── examples │ │ ├── g.js │ │ └── usr-local.js │ ├── glob.js │ ├── logo │ │ ├── glob-solo.png │ │ ├── glob.png │ │ └── glob.svg │ ├── make-benchmark-fixture.sh │ ├── oh-my-glob.gif │ ├── package.json │ ├── prof.sh │ ├── static.json │ ├── stats.txt │ ├── sync.js │ └── test │ │ ├── 00-setup.js │ │ ├── abort.js │ │ ├── absolute.js │ │ ├── bash-comparison.js │ │ ├── bash-results.json │ │ ├── broken-symlink.js │ │ ├── cwd-test.js │ │ ├── empty-set.js │ │ ├── enotsup.js │ │ ├── eperm-stat.js │ │ ├── error-callback.js │ │ ├── fixtures │ │ └── a │ │ │ ├── .abcdef │ │ │ └── x │ │ │ │ └── y │ │ │ │ └── z │ │ │ │ └── a │ │ │ ├── abcdef │ │ │ └── g │ │ │ │ └── h │ │ │ ├── abcfed │ │ │ └── g │ │ │ │ └── h │ │ │ ├── b │ │ │ └── c │ │ │ │ └── d │ │ │ ├── bc │ │ │ └── e │ │ │ │ └── f │ │ │ ├── c │ │ │ └── d │ │ │ │ └── c │ │ │ │ └── b │ │ │ ├── cb │ │ │ └── e │ │ │ │ └── f │ │ │ ├── symlink │ │ │ └── a │ │ │ │ └── b │ │ │ │ └── c │ │ │ ├── x │ │ │ └── .y │ │ │ │ └── b │ │ │ └── z │ │ │ └── .y │ │ │ └── b │ │ ├── follow.js │ │ ├── global-leakage.js │ │ ├── globstar-match.js │ │ ├── has-magic.js │ │ ├── ignore.js │ │ ├── mark.js │ │ ├── match-base.js │ │ ├── multiple-weird-error.js │ │ ├── new-glob-optional-options.js │ │ ├── nocase-nomagic.js │ │ ├── nodir.js │ │ ├── nonull.js │ │ ├── pause-resume.js │ │ ├── readme-issue.js │ │ ├── realpath.js │ │ ├── root-nomount.js │ │ ├── root.js │ │ ├── slash-cwd.js │ │ ├── stat.js │ │ ├── sync-cb-throw.js │ │ └── zz-cleanup.js ├── node-slug │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _slug.js │ ├── bin │ │ └── slug.js │ ├── bower.json │ ├── package.json │ ├── slug.js │ ├── static.json │ ├── stats.txt │ ├── test.js │ └── test │ │ └── slug.test.coffee ├── node-stream-spigot │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── index.js ├── normalize-pkg │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── bin │ │ └── cli.js │ ├── bower.json │ ├── example.js │ ├── index.js │ ├── lib │ │ ├── keys.js │ │ ├── merge.js │ │ ├── normalizers │ │ │ ├── bin.js │ │ │ ├── bugs.js │ │ │ ├── engineStrict.js │ │ │ ├── files.js │ │ │ ├── helpers │ │ │ │ ├── git.js │ │ │ │ └── owner.js │ │ │ ├── homepage.js │ │ │ ├── index.js │ │ │ ├── keywords.js │ │ │ ├── license.js │ │ │ ├── licenses.js │ │ │ ├── main.js │ │ │ ├── name.js │ │ │ ├── person.js │ │ │ ├── repository.js │ │ │ ├── scripts.js │ │ │ └── typings.js │ │ ├── schema.js │ │ ├── utils.js │ │ └── validators │ │ │ ├── index.js │ │ │ ├── name.js │ │ │ ├── preferGlobal.js │ │ │ └── version.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── .eslintrc.json │ │ ├── fixtures │ │ ├── author-condensed.json │ │ ├── authors-condensed.json │ │ ├── bin.json │ │ ├── engine-strict.json │ │ ├── licenses.json │ │ ├── main.json │ │ ├── missing.json │ │ ├── package.json │ │ ├── people-condensed.json │ │ ├── people.json │ │ ├── project-bin │ │ │ ├── bin │ │ │ │ └── foo.js │ │ │ ├── cli.js │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── project-no-git │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── project-no-package │ │ │ └── main.js │ │ ├── project │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── verb.json │ │ └── wrong.json │ │ ├── support │ │ └── git.js │ │ ├── test-bin.js │ │ ├── test-no-git.js │ │ ├── test-no-package.js │ │ ├── test.js │ │ └── utils.js ├── not-defined │ ├── .npmignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── _not-defined.js │ ├── not-defined.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── once │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _once.js │ ├── once.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── once.js ├── pad-left-simple │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── index.test.js ├── pad-left │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── code │ │ │ ├── for-join.js │ │ │ ├── for-new-array.js │ │ │ ├── for.js │ │ │ ├── left-pad.js │ │ │ ├── new-array-join.js │ │ │ ├── pad-left.js │ │ │ ├── recurse.js │ │ │ ├── repeat.js │ │ │ ├── slice-if.js │ │ │ ├── slice-switch.js │ │ │ ├── slice.js │ │ │ ├── substr-if.js │ │ │ ├── substr-switch.js │ │ │ ├── unshift.js │ │ │ ├── while-array-1.js │ │ │ ├── while-array-2.js │ │ │ ├── while-str.js │ │ │ └── while.js │ │ ├── fixtures │ │ │ ├── 1.js │ │ │ ├── 10-custom-char.js │ │ │ ├── 10-num.js │ │ │ ├── 10.js │ │ │ ├── 100-custom-char.js │ │ │ ├── 100-num.js │ │ │ ├── 100.js │ │ │ ├── 1000-custom-char.js │ │ │ ├── 1000.js │ │ │ ├── 15.js │ │ │ ├── 150.js │ │ │ ├── 2.js │ │ │ ├── 200.js │ │ │ ├── 2000.js │ │ │ ├── 25.js │ │ │ ├── 3.js │ │ │ ├── 5-custom-char.js │ │ │ ├── 5.js │ │ │ ├── 50.js │ │ │ └── zero.js │ │ ├── index.js │ │ ├── node-v5.1.1.md │ │ ├── node-v6.1.0-stevemao-leftpad.md │ │ ├── node-v6.1.0.md │ │ └── node-v6.5.0-stevemao-leftpad.md │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── parse-next-json-value │ ├── .eslintrc │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── periods │ ├── README.md │ ├── _periods.js │ ├── package.json │ ├── periods.js │ ├── static.json │ ├── stats.txt │ └── test │ │ └── test.js ├── property-validator │ ├── .gitignore │ ├── .prettierrc │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── README.md │ ├── _index.js │ ├── examples │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── example_ts.js │ │ ├── example_ts.ts │ │ ├── example_vanilla.js │ │ ├── example_with_express.es6.js │ │ ├── example_with_express.js │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── index.d.ts │ ├── index.js │ ├── lib │ │ ├── assert_middleware.js │ │ ├── request_assertions.js │ │ ├── request_validator.js │ │ ├── translations │ │ │ └── en.js │ │ ├── translator.js │ │ ├── validation_error.js │ │ └── validations.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── test │ │ ├── middleware_test.js │ │ ├── request_assertions_test.js │ │ ├── request_validation_test.js │ │ ├── translator_test.js │ │ └── validation_test.js │ └── yarn.lock ├── pure-time ├── pureTime ├── removeNode.sh ├── rimraf │ ├── .github │ │ └── FUNDING.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── _rimraf.js │ ├── bin.js │ ├── package.json │ ├── rimraf.js │ ├── static.json │ ├── stats.txt │ └── test │ │ ├── basic.js │ │ ├── bin.js │ │ ├── custom-fs.js │ │ └── fill.js ├── rtrim │ ├── .codeclimate.yml │ ├── .eslintrc.json │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── _index.js │ ├── examples │ │ └── rtrim.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── test │ │ └── test.js │ └── yarn.lock ├── run-check.sh ├── run-perf-pure.sh ├── run-perf-tm.sh ├── run-perf-vRWX.sh ├── run-perf.sh ├── run-types.sh ├── rwx.tsv ├── schema-inspector │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── _index.js │ ├── bower.json │ ├── index.js │ ├── lib │ │ └── schema-inspector.js │ ├── misc │ │ ├── call_stack_test.js │ │ ├── custom-type.js │ │ ├── frontEndTest.html │ │ ├── gn_test.js │ │ ├── jquery.min.js │ │ ├── node-test.js │ │ ├── schema-inspector.png │ │ ├── sn_test.js │ │ ├── validDate.js │ │ ├── vd_test.js │ │ └── vd_test2.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── test │ │ ├── generator_test.js │ │ ├── sanitization_test.js │ │ ├── test.js │ │ └── validation_test.js │ └── yarn.lock ├── set-value │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── .verb.md │ ├── FUNDING.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmark │ │ ├── code │ │ │ ├── deep-object.js │ │ │ ├── deep-property.js │ │ │ ├── deep-set.js │ │ │ ├── deephas.js │ │ │ ├── dot-prop.js │ │ │ ├── dot2val.js │ │ │ ├── es5-dot-prop.js │ │ │ ├── lodash-set.js │ │ │ ├── object-path-set.js │ │ │ ├── object-set.js │ │ │ └── set-value.js │ │ ├── fixtures │ │ │ ├── deep.js │ │ │ ├── medium.js │ │ │ └── shallow.js │ │ ├── index.js │ │ ├── stats.json │ │ └── stats.md │ ├── examples.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── star_diff.sh ├── static-props │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _static-props.js │ ├── package.json │ ├── static-props.js │ ├── static.json │ ├── stats.txt │ └── test.js ├── staticFiles │ ├── staticalgebra:.json │ ├── staticarr-diff:.json │ ├── staticarr-flatten:.json │ ├── staticarray-first:.json │ ├── staticarray-last:.json │ ├── staticarray-range:.json │ ├── staticarray.chunk:.json │ ├── staticbasealgebra:.json │ ├── staticbasearr-diff:.json │ ├── staticbasearr-flatten:.json │ ├── staticbasearray-first:.json │ ├── staticbasearray-last:.json │ ├── staticbasearray-range:.json │ ├── staticbasearray.chunk:.json │ ├── staticbaseconcat-stream:.json │ ├── staticbasedeep-bind:.json │ ├── staticbasedocument-ready:.json │ ├── staticbasefile-size:.json │ ├── staticbasefs-promise:.json │ ├── staticbaseget-value:.json │ ├── staticbasegroup-array:.json │ ├── staticbasehas-key-deep:.json │ ├── staticbasehas-value:.json │ ├── staticbasehe:.json │ ├── staticbaseidentity-function:.json │ ├── staticbasein-array:.json │ ├── staticbaseis-empty-object:.json │ ├── staticbaseis-generator:.json │ ├── staticbaseis-number:.json │ ├── staticbaseis-promise:.json │ ├── staticbaseis-sorted:.json │ ├── staticbaseleft-pad:.json │ ├── staticbasemissing-deep-keys:.json │ ├── staticbasendarray:.json │ ├── staticbasenode-du:.json │ ├── staticbasenode-glob:.json │ ├── staticbasenode-slug:.json │ ├── staticbasenode-stream-spigot:.json │ ├── staticbasenormalize-pkg:.json │ ├── staticbasenot-defined:.json │ ├── staticbaseonce:.json │ ├── staticbasepad-left-simple:.json │ ├── staticbasepad-left:.json │ ├── staticbaseparse-next-json-value:.json │ ├── staticbaseperiods:.json │ ├── staticbaseproperty-validator:.json │ ├── staticbaserimraf:.json │ ├── staticbasertrim:.json │ ├── staticbaseschema-inspector:.json │ ├── staticbaseset-value:.json │ ├── staticbasestatic-props:.json │ ├── staticbasestaticFiles:.json │ ├── staticbasesyncthrough:.json │ ├── staticbasethrough2-map:.json │ ├── staticbasethrough2:.json │ ├── staticbasetime-stamp:.json │ ├── staticbaseunordered-array-remove:.json │ ├── staticbasezipmap:.json │ ├── staticbothalgebra:.json │ ├── staticbotharr-diff:.json │ ├── staticbotharr-flatten:.json │ ├── staticbotharray-first:.json │ ├── staticbotharray-last:.json │ ├── staticbotharray-range:.json │ ├── staticbotharray.chunk:.json │ ├── staticbothconcat-stream:.json │ ├── staticbothdeep-bind:.json │ ├── staticbothdocument-ready:.json │ ├── staticbothfile-size:.json │ ├── staticbothfs-promise:.json │ ├── staticbothget-value:.json │ ├── staticbothgroup-array:.json │ ├── staticbothhas-key-deep:.json │ ├── staticbothhas-value:.json │ ├── staticbothhe:.json │ ├── staticbothidentity-function:.json │ ├── staticbothin-array:.json │ ├── staticbothis-empty-object:.json │ ├── staticbothis-generator:.json │ ├── staticbothis-number:.json │ ├── staticbothis-promise:.json │ ├── staticbothis-sorted:.json │ ├── staticbothleft-pad:.json │ ├── staticbothmissing-deep-keys:.json │ ├── staticbothndarray:.json │ ├── staticbothnode-du:.json │ ├── staticbothnode-glob:.json │ ├── staticbothnode-slug:.json │ ├── staticbothnode-stream-spigot:.json │ ├── staticbothnormalize-pkg:.json │ ├── staticbothnot-defined:.json │ ├── staticbothonce:.json │ ├── staticbothpad-left-simple:.json │ ├── staticbothpad-left:.json │ ├── staticbothparse-next-json-value:.json │ ├── staticbothperiods:.json │ ├── staticbothproperty-validator:.json │ ├── staticbothrimraf:.json │ ├── staticbothrtrim:.json │ ├── staticbothschema-inspector:.json │ ├── staticbothset-value:.json │ ├── staticbothstatic-props:.json │ ├── staticbothstaticFiles:.json │ ├── staticbothsyncthrough:.json │ ├── staticboththrough2-map:.json │ ├── staticboththrough2:.json │ ├── staticbothtime-stamp:.json │ ├── staticbothunordered-array-remove:.json │ ├── staticbothzipmap:.json │ ├── staticconcat-stream:.json │ ├── staticdeep-bind:.json │ ├── staticdocument-ready:.json │ ├── staticfieldalgebra:.json │ ├── staticfieldarr-diff:.json │ ├── staticfieldarr-flatten:.json │ ├── staticfieldarray-first:.json │ ├── staticfieldarray-last:.json │ ├── staticfieldarray-range:.json │ ├── staticfieldarray.chunk:.json │ ├── staticfieldconcat-stream:.json │ ├── staticfielddeep-bind:.json │ ├── staticfielddocument-ready:.json │ ├── staticfieldfile-size:.json │ ├── staticfieldfs-promise:.json │ ├── staticfieldget-value:.json │ ├── staticfieldgroup-array:.json │ ├── staticfieldhas-key-deep:.json │ ├── staticfieldhas-value:.json │ ├── staticfieldhe:.json │ ├── staticfieldidentity-function:.json │ ├── staticfieldin-array:.json │ ├── staticfieldis-empty-object:.json │ ├── staticfieldis-generator:.json │ ├── staticfieldis-number:.json │ ├── staticfieldis-promise:.json │ ├── staticfieldis-sorted:.json │ ├── staticfieldleft-pad:.json │ ├── staticfieldmissing-deep-keys:.json │ ├── staticfieldndarray:.json │ ├── staticfieldnode-du:.json │ ├── staticfieldnode-glob:.json │ ├── staticfieldnode-slug:.json │ ├── staticfieldnode-stream-spigot:.json │ ├── staticfieldnormalize-pkg:.json │ ├── staticfieldnot-defined:.json │ ├── staticfieldonce:.json │ ├── staticfieldpad-left-simple:.json │ ├── staticfieldpad-left:.json │ ├── staticfieldparse-next-json-value:.json │ ├── staticfieldperiods:.json │ ├── staticfieldproperty-validator:.json │ ├── staticfieldrimraf:.json │ ├── staticfieldrtrim:.json │ ├── staticfieldschema-inspector:.json │ ├── staticfieldset-value:.json │ ├── staticfieldstatic-props:.json │ ├── staticfieldstaticFiles:.json │ ├── staticfieldsyncthrough:.json │ ├── staticfieldthrough2-map:.json │ ├── staticfieldthrough2:.json │ ├── staticfieldtime-stamp:.json │ ├── staticfieldunordered-array-remove:.json │ ├── staticfieldzipmap:.json │ ├── staticfile-size:.json │ ├── staticfs-promise:.json │ ├── staticget-value:.json │ ├── staticgroup-array:.json │ ├── statichas-key-deep:.json │ ├── statichas-value:.json │ ├── statiche:.json │ ├── staticidentity-function:.json │ ├── staticin-array:.json │ ├── staticis-empty-object:.json │ ├── staticis-generator:.json │ ├── staticis-number:.json │ ├── staticis-promise:.json │ ├── staticis-sorted:.json │ ├── staticleft-pad:.json │ ├── staticmissing-deep-keys:.json │ ├── staticndarray:.json │ ├── staticnode-du:.json │ ├── staticnode-glob:.json │ ├── staticnode-slug:.json │ ├── staticnode-stream-spigot:.json │ ├── staticnormalize-pkg:.json │ ├── staticnot-defined:.json │ ├── staticonce:.json │ ├── staticpad-left-simple:.json │ ├── staticpad-left:.json │ ├── staticparse-next-json-value:.json │ ├── staticperiods:.json │ ├── staticproperty-validator:.json │ ├── staticrimraf:.json │ ├── staticrtrim:.json │ ├── staticschema-inspector:.json │ ├── staticset-value:.json │ ├── staticstatic-props:.json │ ├── staticstaticFiles:.json │ ├── staticsyncthrough:.json │ ├── staticthrough2-map:.json │ ├── staticthrough2:.json │ ├── statictime-stamp:.json │ ├── staticunordered-array-remove:.json │ └── staticzipmap:.json ├── syncthrough │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _syncthrough.js │ ├── benchmarks │ │ └── basic.js │ ├── example.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── syncthrough.js │ └── test.js ├── through2-map │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test │ │ └── index.js ├── through2 │ ├── .gitignore │ ├── .jshintrc │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── _through2.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ ├── test │ │ ├── bench.js │ │ └── test.js │ └── through2.js ├── time ├── time-stamp │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── .verb.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── helpers.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── timeOnly.txt ├── timePureDeathStar ├── unordered-array-remove │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── usertime └── zipmap │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── index.js │ ├── package.json │ ├── static.json │ ├── stats.txt │ └── test.js ├── native ├── README ├── crypt3async.node └── test.js ├── profiling ├── .gitignore ├── correctness.js ├── epilogue.lya ├── prologue-profiling.lya ├── run-dynamic.sh ├── t0 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js ├── t1 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ └── main.js ├── t2 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js ├── t3 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ ├── m4.js │ └── main.js ├── t4 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ └── main.js ├── t5 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ ├── m4.js │ └── main.js └── t6 │ ├── correct.pwd.json │ ├── m1.js │ ├── m2.js │ ├── m3.js │ ├── m4.js │ └── main.js ├── repos ├── README.md ├── chalk │ ├── .editorconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .npmrc │ ├── .travis.yml │ ├── benchmark.js │ ├── code-of-conduct.md │ ├── contributing.md │ ├── examples │ │ ├── rainbow.js │ │ └── screenshot.js │ ├── index.d.ts │ ├── index.js │ ├── index.js.flow │ ├── index.test-d.ts │ ├── license │ ├── media │ │ ├── logo.png │ │ └── logo.svg │ ├── package.json │ ├── readme.md │ ├── templates.js │ ├── test │ │ ├── _fixture.js │ │ ├── _flow.js │ │ ├── _supports-color.js │ │ ├── chalk.js │ │ ├── constructor.js │ │ ├── enabled.js │ │ ├── instance.js │ │ ├── level.js │ │ ├── no-color-support.js │ │ ├── template-literal.js │ │ ├── visible.js │ │ └── windows.js │ ├── timebind.txt │ └── tsconfig.json ├── cheerio │ ├── .eslintrc.json │ ├── .github │ │ └── issue_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── CNAME │ ├── CONTRIBUTING.md │ ├── History.md │ ├── LICENSE │ ├── Makefile │ ├── Readme.md │ ├── _config.yml │ ├── _index.js │ ├── benchmark │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── benchmark.js │ │ ├── documents │ │ │ └── jquery.html │ │ └── suite.js │ ├── docs │ │ └── template │ │ │ ├── README.md │ │ │ ├── publish.js │ │ │ ├── static │ │ │ ├── fonts │ │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ │ └── OpenSans-Regular-webfont.woff │ │ │ ├── scripts │ │ │ │ ├── linenumber.js │ │ │ │ └── prettify │ │ │ │ │ ├── Apache-License-2.0.txt │ │ │ │ │ ├── lang-css.js │ │ │ │ │ └── prettify.js │ │ │ └── styles │ │ │ │ ├── jsdoc-default.css │ │ │ │ ├── prettify-jsdoc.css │ │ │ │ └── prettify-tomorrow.css │ │ │ └── tmpl │ │ │ ├── augments.tmpl │ │ │ ├── container.tmpl │ │ │ ├── details.tmpl │ │ │ ├── example.tmpl │ │ │ ├── examples.tmpl │ │ │ ├── exceptions.tmpl │ │ │ ├── layout.tmpl │ │ │ ├── mainpage.tmpl │ │ │ ├── members.tmpl │ │ │ ├── method.tmpl │ │ │ ├── modifies.tmpl │ │ │ ├── params.tmpl │ │ │ ├── properties.tmpl │ │ │ ├── returns.tmpl │ │ │ ├── source.tmpl │ │ │ ├── tutorial.tmpl │ │ │ └── type.tmpl │ ├── index.js │ ├── jsdoc-config.json │ ├── lib │ │ ├── api │ │ │ ├── attributes.js │ │ │ ├── css.js │ │ │ ├── forms.js │ │ │ ├── manipulation.js │ │ │ └── traversing.js │ │ ├── cheerio.js │ │ ├── options.js │ │ ├── parse.js │ │ ├── static.js │ │ └── utils.js │ ├── package.json │ ├── scripts │ │ ├── generate_history.sh │ │ └── prepublish │ └── test │ │ ├── .eslintrc.json │ │ ├── api │ │ ├── attributes.js │ │ ├── css.js │ │ ├── deprecated.js │ │ ├── forms.js │ │ ├── manipulation.js │ │ ├── traversing.js │ │ └── utils.js │ │ ├── cheerio.js │ │ ├── fixtures.js │ │ ├── mocha.opts │ │ ├── parse.js │ │ └── xml.js ├── classnames │ ├── .editorconfig │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── _index.js │ ├── benchmarks │ │ ├── benchmarks.html │ │ ├── fixtures.js │ │ ├── package.json │ │ ├── run.js │ │ ├── runChecks.js │ │ ├── runInBrowser.js │ │ └── runSuite.js │ ├── bind.d.ts │ ├── bind.js │ ├── bower.json │ ├── dedupe.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── test │ │ ├── bind.js │ │ ├── dedupe.js │ │ └── index.js │ └── timebind.txt ├── color │ ├── LICENSE │ ├── README.md │ ├── ROADMAP.md │ ├── examples │ │ ├── normal-usage.js │ │ └── safe-string.js │ ├── index.d.ts │ ├── lib │ │ ├── _index.js │ │ ├── colors.js │ │ ├── custom │ │ │ ├── trap.js │ │ │ └── zalgo.js │ │ ├── extendStringPrototype.js │ │ ├── index.js │ │ ├── maps │ │ │ ├── america.js │ │ │ ├── rainbow.js │ │ │ ├── random.js │ │ │ └── zebra.js │ │ ├── styles.js │ │ └── system │ │ │ ├── has-flag.js │ │ │ └── supports-colors.js │ ├── package.json │ ├── safe.d.ts │ ├── safe.js │ ├── screenshots │ │ └── colors.png │ ├── tests │ │ ├── basic-test.js │ │ └── safe-test.js │ └── themes │ │ └── generic-logging.js ├── colorette │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── bench │ │ ├── index.js │ │ ├── package.json │ │ └── runBenchmark.js │ ├── colorette.d.ts │ ├── index.js │ ├── package.json │ ├── test │ │ ├── index.js │ │ └── ts │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ └── timebind.txt ├── debug │ ├── LICENSE │ ├── README.md │ ├── coverage │ │ ├── coverage.json │ │ ├── lcov-report │ │ │ ├── base.css │ │ │ ├── debug-master │ │ │ │ ├── index.html │ │ │ │ ├── src │ │ │ │ │ ├── common.js.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js.html │ │ │ │ │ └── node.js.html │ │ │ │ └── test.js.html │ │ │ ├── debug │ │ │ │ ├── index.html │ │ │ │ ├── src │ │ │ │ │ ├── common.js.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index.js.html │ │ │ │ │ └── node.js.html │ │ │ │ └── test.js.html │ │ │ ├── index.html │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sort-arrow-sprite.png │ │ │ └── sorter.js │ │ └── lcov.info │ ├── karma.conf.js │ ├── package.json │ ├── src │ │ ├── browser.js │ │ ├── common.js │ │ ├── index.js │ │ └── node.js │ └── test.js ├── minimatch │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── _minimatch.js │ ├── benchmark.js │ ├── minimatch.js │ ├── package.json │ └── test │ │ ├── basic.js │ │ ├── brace-expand.js │ │ ├── defaults.js │ │ ├── extglob-ending-with-state-char.js │ │ ├── extglob-unfinished.js │ │ ├── patterns.js │ │ ├── redos.js │ │ └── tricky-negations.js ├── minimist │ ├── dotted │ │ └── dotted.js │ ├── long │ │ └── long.js │ ├── short │ │ └── short.js │ ├── stop_early │ │ └── stop_early.js │ └── whitespace │ │ └── whitespace.js ├── mkdirp │ ├── LICENSE │ ├── bin │ │ ├── cmd.js │ │ └── usage.txt │ ├── examples │ │ └── pow.js │ ├── index.js │ ├── package.json │ ├── readme.markdown │ ├── repo │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── bin │ │ │ ├── cmd.js │ │ │ └── usage.txt │ │ ├── examples │ │ │ └── pow.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ ├── chmod.js │ │ │ ├── clobber.js │ │ │ ├── mkdirp.js │ │ │ ├── perm.js │ │ │ ├── perm_sync.js │ │ │ ├── race.js │ │ │ ├── rel.js │ │ │ ├── return.js │ │ │ ├── return_sync.js │ │ │ ├── root.js │ │ │ ├── sync.js │ │ │ ├── umask.js │ │ │ └── umask_sync.js │ └── test │ │ ├── chmod.js │ │ ├── clobber.js │ │ ├── mkdirp.js │ │ ├── perm.js │ │ ├── perm_sync.js │ │ ├── race.js │ │ ├── rel.js │ │ ├── return.js │ │ ├── return_sync.js │ │ ├── root.js │ │ ├── sync.js │ │ ├── umask.js │ │ └── umask_sync.js └── moment │ └── main.js ├── results.txt ├── results ├── RWX │ ├── check_res │ └── star_res ├── context.ods ├── context │ ├── all │ ├── all_correct │ ├── es-globals │ ├── es-globals_correct │ ├── module-locals │ ├── module-locals_correct │ ├── module-returns │ ├── module-returns_correct │ ├── node-globals │ ├── node-globals_correct │ ├── user-globals │ └── user-globals_correct ├── deathStar │ ├── RWX_deathstar │ ├── callNumbers │ ├── globalOnly │ └── profiling ├── depth.ods ├── depth │ ├── d0 │ ├── d0_correct │ ├── d1 │ ├── d10 │ ├── d10_correct │ ├── d11 │ ├── d11_correct │ ├── d12 │ ├── d12_correct │ ├── d13 │ ├── d13_correct │ ├── d14 │ ├── d14_correct │ ├── d15 │ ├── d15_correct │ ├── d1_correct │ ├── d2 │ ├── d2_correct │ ├── d3 │ ├── d3_correct │ ├── d4 │ ├── d4_correct │ ├── d5 │ ├── d5_correct │ ├── d6 │ ├── d6_correct │ ├── d7 │ ├── d7_correct │ ├── d8 │ ├── d8_correct │ ├── d9 │ └── d9_correct ├── depth_no_children.ods ├── depth_no_children │ ├── depth0 │ ├── depth0_correct │ ├── depth1 │ ├── depth1_correct │ ├── depth2 │ ├── depth2_correct │ ├── depth3 │ ├── depth3_correct │ ├── depth4 │ ├── depth4_correct │ ├── depth5 │ ├── depth5_correct │ ├── depth6 │ ├── depth6_correct │ ├── depth7 │ ├── depth7_correct │ ├── depth8 │ ├── depth8_correct │ ├── depth9 │ └── depth9_correct ├── extra.ods ├── getResults.sh ├── old_context.ods ├── old_context │ ├── all │ ├── all_correct │ ├── es-globals │ ├── es-globals_correct │ ├── module-locals │ ├── module-locals_correct │ ├── module-returns │ ├── module-returns_correct │ ├── node-globals │ ├── node-globals_correct │ ├── onlyWith │ ├── onlyWith_correct │ ├── user-globals │ └── user-globals_correct ├── perf │ ├── 100_itter_RWX.ods │ ├── CALL_NUMBERS │ ├── GLOBAL_ONLY │ ├── PROFILING_RELATIVE │ ├── RWX_PERFORMANCE │ └── timeOnly.txt ├── perf_with_Time │ ├── RWX.txt │ ├── call_numbers.txt │ ├── global_only.txt │ └── profiling.txt └── stars │ ├── Dbase-star │ ├── Dprop-star │ └── bothStar ├── run-lya.sh ├── run-tests.sh ├── run_all.sh ├── sandboxed-eval.js ├── scale ├── .gitignore ├── build.sh └── mostDep.txt ├── sec ├── count.js ├── e │ ├── js │ │ └── a.js │ ├── main.js │ └── sbx.js ├── fast-redact │ ├── .gitignore │ ├── .npmignore │ ├── .npmrc │ ├── benchmark │ │ └── index.js │ ├── index.js │ ├── lib │ │ ├── modifiers.js │ │ ├── parse.js │ │ ├── redactor.js │ │ ├── restorer.js │ │ ├── rx.js │ │ ├── state.js │ │ └── validate.js │ ├── lya.js │ ├── package.json │ ├── poc.js │ ├── readme.md │ ├── static.json │ └── test │ │ └── index.js ├── fs-path │ ├── lya.js │ ├── poc.js │ └── static.json ├── mathjs │ ├── lya.js │ ├── math.js │ ├── poc.js │ └── static.json ├── morgan │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .travis.yml │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lya.js │ ├── package.json │ ├── poc.js │ ├── static.json │ └── test │ │ ├── .eslintrc │ │ ├── fixtures │ │ ├── server.crt │ │ └── server.key │ │ └── morgan.js ├── node_serialize │ ├── lya.js │ ├── poc.js │ ├── serialize.js │ └── static.json ├── pixl-class │ ├── lya.js │ ├── poc.js │ └── static.json ├── safe-eval │ ├── index.js │ ├── lya.js │ ├── poc.js │ └── static.json ├── safer-eval │ ├── lya.js │ ├── poc.js │ ├── src │ │ ├── browser.js │ │ ├── clones.js │ │ ├── common.js │ │ └── index.js │ └── static.json ├── serialize-javascript │ ├── index.js │ ├── lya.js │ ├── poc.js │ └── static.json ├── serialize_js │ ├── lya.js │ ├── poc.js │ ├── ser │ │ ├── .eslintignore │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── lib │ │ │ ├── deserialize.js │ │ │ ├── index.js │ │ │ ├── internal │ │ │ │ ├── reference.js │ │ │ │ └── utils.js │ │ │ ├── serialize.js │ │ │ └── serializeToModule.js │ │ ├── package.json │ │ └── test │ │ │ └── index.mocha.js │ └── static.json ├── static-eval │ ├── index.js │ ├── lya.js │ ├── package.json │ ├── poc.js │ └── static.json ├── test │ ├── lya.js │ └── poc.js └── vulns.md └── tools ├── .gitignore └── fetch.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/REQUIREMENTS.md -------------------------------------------------------------------------------- /doc/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/config.md -------------------------------------------------------------------------------- /doc/contrib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/contrib.md -------------------------------------------------------------------------------- /doc/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/dev.md -------------------------------------------------------------------------------- /doc/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/internal.md -------------------------------------------------------------------------------- /doc/papers: -------------------------------------------------------------------------------- 1 | /Users/nv/Dropbox/Papers/lya/ -------------------------------------------------------------------------------- /doc/tutorial/0/deps/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/0/deps/log.js -------------------------------------------------------------------------------- /doc/tutorial/0/deps/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/0/deps/serial.js -------------------------------------------------------------------------------- /doc/tutorial/0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/0/main.js -------------------------------------------------------------------------------- /doc/tutorial/0/secret/dbc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/0/secret/dbc.json -------------------------------------------------------------------------------- /doc/tutorial/1/deps/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/1/deps/math.js -------------------------------------------------------------------------------- /doc/tutorial/1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/1/main.js -------------------------------------------------------------------------------- /doc/tutorial/2/dynamic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/2/dynamic.json -------------------------------------------------------------------------------- /doc/tutorial/2/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/2/lya.js -------------------------------------------------------------------------------- /doc/tutorial/2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/2/main.js -------------------------------------------------------------------------------- /doc/tutorial/3/dynamic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/3/dynamic.json -------------------------------------------------------------------------------- /doc/tutorial/3/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/3/lya.js -------------------------------------------------------------------------------- /doc/tutorial/3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/3/main.js -------------------------------------------------------------------------------- /doc/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/README.md -------------------------------------------------------------------------------- /doc/tutorial/analyses/call-times/m1.js: -------------------------------------------------------------------------------- 1 | require('./m2.js'); 2 | -------------------------------------------------------------------------------- /doc/tutorial/analyses/imports/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/imports/m1.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/imports/m2.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | -------------------------------------------------------------------------------- /doc/tutorial/analyses/imports/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /doc/tutorial/analyses/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/main.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/on-off/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/on-off/main.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/rwx/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/rwx/m1.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/rwx/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/rwx/m2.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/rwx/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/rwx/m3.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/rwx/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/analyses/rwx/m4.js -------------------------------------------------------------------------------- /doc/tutorial/analyses/rwx/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require("./m1.js"); 2 | -------------------------------------------------------------------------------- /doc/tutorial/hooks/onCallPre.js: -------------------------------------------------------------------------------- 1 | console.log('Test'); 2 | -------------------------------------------------------------------------------- /doc/tutorial/hooks/onConstruct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/hooks/onConstruct.js -------------------------------------------------------------------------------- /doc/tutorial/hooks/onHas-Analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/hooks/onHas-Analysis.js -------------------------------------------------------------------------------- /doc/tutorial/hooks/onHas.js: -------------------------------------------------------------------------------- 1 | // eslint-disable-next-line no-undef 2 | x = 1; 3 | -------------------------------------------------------------------------------- /doc/tutorial/hooks/onImport.js: -------------------------------------------------------------------------------- 1 | require('fs'); 2 | -------------------------------------------------------------------------------- /doc/tutorial/hooks/onRead-Analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/hooks/onRead-Analysis.js -------------------------------------------------------------------------------- /doc/tutorial/hooks/onRead-Write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/hooks/onRead-Write.js -------------------------------------------------------------------------------- /doc/tutorial/hooks/sourceTransform.js: -------------------------------------------------------------------------------- 1 | let x = 1; 2 | console.log(x); 3 | x = x + 3; 4 | -------------------------------------------------------------------------------- /doc/tutorial/icfp20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/icfp20.md -------------------------------------------------------------------------------- /doc/tutorial/slides/context/exclude/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/slides/context/include/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/slides/fields/exclude/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/slides/fields/include/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/slides/module/exclude/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/slides/module/include/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /doc/tutorial/users/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/users/m1.js -------------------------------------------------------------------------------- /doc/tutorial/users/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/users/math.js -------------------------------------------------------------------------------- /doc/tutorial/users/run-lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial/users/run-lya.js -------------------------------------------------------------------------------- /doc/tutorial2/bottleneck/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/bottleneck/example.js -------------------------------------------------------------------------------- /doc/tutorial2/eval/attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/eval/attack.js -------------------------------------------------------------------------------- /doc/tutorial2/eval/http-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/eval/http-server.js -------------------------------------------------------------------------------- /doc/tutorial2/eval/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/eval/package.json -------------------------------------------------------------------------------- /doc/tutorial2/malicious/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/malicious/main.js -------------------------------------------------------------------------------- /doc/tutorial2/malicious/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/malicious/package.json -------------------------------------------------------------------------------- /doc/tutorial2/malicious/pass.info: -------------------------------------------------------------------------------- 1 | { 2 | pizza: "best" 3 | } 4 | -------------------------------------------------------------------------------- /doc/tutorial2/malicious/personal.info: -------------------------------------------------------------------------------- 1 | { 2 | pizza: "best" 3 | } 4 | -------------------------------------------------------------------------------- /doc/tutorial2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial2/run.sh -------------------------------------------------------------------------------- /doc/tutorial3/bottleneck/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/bottleneck/example.js -------------------------------------------------------------------------------- /doc/tutorial3/eval/attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/eval/attack.js -------------------------------------------------------------------------------- /doc/tutorial3/eval/http-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/eval/http-server.js -------------------------------------------------------------------------------- /doc/tutorial3/eval/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/eval/package.json -------------------------------------------------------------------------------- /doc/tutorial3/eval/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/eval/static.json -------------------------------------------------------------------------------- /doc/tutorial3/malicious/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/malicious/main.js -------------------------------------------------------------------------------- /doc/tutorial3/malicious/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/malicious/package.json -------------------------------------------------------------------------------- /doc/tutorial3/malicious/personal.info: -------------------------------------------------------------------------------- 1 | { 2 | pizza: "best" 3 | } 4 | -------------------------------------------------------------------------------- /doc/tutorial3/malicious/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/malicious/static.json -------------------------------------------------------------------------------- /doc/tutorial3/personal.data: -------------------------------------------------------------------------------- 1 | "pop-os" -------------------------------------------------------------------------------- /doc/tutorial3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/doc/tutorial3/run -------------------------------------------------------------------------------- /lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/lya.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/README.md -------------------------------------------------------------------------------- /src/analysis/access/on-off-enforce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/access/on-off-enforce.js -------------------------------------------------------------------------------- /src/analysis/access/on-off.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/access/on-off.js -------------------------------------------------------------------------------- /src/analysis/access/rwx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/access/rwx.js -------------------------------------------------------------------------------- /src/analysis/performance/call-freq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/performance/call-freq.js -------------------------------------------------------------------------------- /src/analysis/simple/global-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/simple/global-only.js -------------------------------------------------------------------------------- /src/analysis/simple/imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/simple/imports.js -------------------------------------------------------------------------------- /src/analysis/simple/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/simple/sample.js -------------------------------------------------------------------------------- /src/analysis/simple/term-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/simple/term-index.js -------------------------------------------------------------------------------- /src/analysis/simple/uncomment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/simple/uncomment.js -------------------------------------------------------------------------------- /src/analysis/spec/coarse-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/spec/coarse-types.js -------------------------------------------------------------------------------- /src/analysis/spec/export-type-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/spec/export-type-all.js -------------------------------------------------------------------------------- /src/analysis/spec/export-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/spec/export-type.js -------------------------------------------------------------------------------- /src/analysis/spec/simple-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/analysis/spec/simple-types.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/core.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/default-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/src/utils/default-names.json -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | identity: () => {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tst/.gitignore: -------------------------------------------------------------------------------- 1 | dynamic.json 2 | -------------------------------------------------------------------------------- /tst/coarse-types/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/coarse-types/run-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/run-dynamic.sh -------------------------------------------------------------------------------- /tst/coarse-types/t0/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t0/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t0/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t0/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t0/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t0/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t0/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t0/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t0/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t1/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t1/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t1/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t1/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t1/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t1/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t1/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t1/m2.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | add : (a, b) => a + b, 3 | }; 4 | -------------------------------------------------------------------------------- /tst/coarse-types/t1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t1/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t10/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t10/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t10/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t10/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t10/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t10/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t10/m1.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t10/main.js: -------------------------------------------------------------------------------- 1 | const m1 = require('./m1.js'); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t11/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t11/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t11/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t11/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t11/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t11/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t11/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t11/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t11/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t11/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t12/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t12/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t12/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t12/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t12/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t12/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t12/m1.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/coarse-types/t12/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require('./m1.js') 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t13/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t13/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t13/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t13/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t13/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t13/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t13/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t13/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t13/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require('./m1.js') 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t14/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t14/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t14/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t14/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t14/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t14/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t14/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t14/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t14/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require('./m1.js') 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t15/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t15/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t15/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t15/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t15/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t15/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t15/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t15/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t15/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require('./m1.js') 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t16/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t16/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t16/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t16/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t16/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t16/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t16/m1.js: -------------------------------------------------------------------------------- 1 | require("./m2.js"); 2 | let x = a 3 | -------------------------------------------------------------------------------- /tst/coarse-types/t16/m2.js: -------------------------------------------------------------------------------- 1 | a = 3; 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t16/main.js: -------------------------------------------------------------------------------- 1 | require("./m1.js"); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t17/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t17/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t17/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t17/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t17/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t17/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t17/m1.js: -------------------------------------------------------------------------------- 1 | require("./m2.js"); 2 | let x = global.a 3 | -------------------------------------------------------------------------------- /tst/coarse-types/t17/m2.js: -------------------------------------------------------------------------------- 1 | global.a = 3; 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t17/main.js: -------------------------------------------------------------------------------- 1 | require("./m1.js"); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t18/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t18/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t18/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t18/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t18/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t18/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t18/m1.js: -------------------------------------------------------------------------------- 1 | require("./m2.js"); 2 | 3 | a = 0 4 | let f = () => { 5 | a++ 6 | } 7 | 8 | f() 9 | -------------------------------------------------------------------------------- /tst/coarse-types/t18/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t18/m2.js -------------------------------------------------------------------------------- /tst/coarse-types/t18/main.js: -------------------------------------------------------------------------------- 1 | require("./m1.js"); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t19/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t19/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t19/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t19/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t19/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/m2.js -------------------------------------------------------------------------------- /tst/coarse-types/t19/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/m3.js -------------------------------------------------------------------------------- /tst/coarse-types/t19/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/m4.js -------------------------------------------------------------------------------- /tst/coarse-types/t19/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t19/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t2/RWX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/RWX.json -------------------------------------------------------------------------------- /tst/coarse-types/t2/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t2/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t2/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t2/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t2/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/m2.js -------------------------------------------------------------------------------- /tst/coarse-types/t2/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/m3.js -------------------------------------------------------------------------------- /tst/coarse-types/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t2/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t3/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t3/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t3/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t3/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t3/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t3/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t3/m1.js: -------------------------------------------------------------------------------- 1 | console.log(global.x, y) 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t3/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t4/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t4/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t4/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t4/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t4/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/m2.js -------------------------------------------------------------------------------- /tst/coarse-types/t4/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/m3.js -------------------------------------------------------------------------------- /tst/coarse-types/t4/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t4/m4.js -------------------------------------------------------------------------------- /tst/coarse-types/t4/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require("./m1.js"); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t5/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t5/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t5/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t5/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t5/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t5/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t5/m1.js: -------------------------------------------------------------------------------- 1 | let m2 = require("./m2.js"); 2 | module.exports = () => {}; 3 | -------------------------------------------------------------------------------- /tst/coarse-types/t5/m2.js: -------------------------------------------------------------------------------- 1 | console.log(1); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t5/main.js: -------------------------------------------------------------------------------- 1 | require('./m1.js')(); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t6/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t6/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t6/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t6/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t6/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t6/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t6/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t6/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t6/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t6/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t7/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t7/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t7/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t7/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t7/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t7/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t7/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t7/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t7/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t7/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t8/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t8/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t8/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t8/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t8/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t8/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t8/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t8/m1.js -------------------------------------------------------------------------------- /tst/coarse-types/t8/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t8/m2.js -------------------------------------------------------------------------------- /tst/coarse-types/t8/main.js: -------------------------------------------------------------------------------- 1 | let m1 = require("./m1.js"); 2 | -------------------------------------------------------------------------------- /tst/coarse-types/t9/correct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t9/correct.json -------------------------------------------------------------------------------- /tst/coarse-types/t9/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t9/correct.pwd.json -------------------------------------------------------------------------------- /tst/coarse-types/t9/generated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t9/generated.test -------------------------------------------------------------------------------- /tst/coarse-types/t9/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t9/main.js -------------------------------------------------------------------------------- /tst/coarse-types/t9/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/coarse-types/t9/math.js -------------------------------------------------------------------------------- /tst/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/eval.js -------------------------------------------------------------------------------- /tst/export-types-all/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/.gitignore -------------------------------------------------------------------------------- /tst/export-types-all/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/export-types-all/run-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/run-dynamic.sh -------------------------------------------------------------------------------- /tst/export-types-all/t0/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t0/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t0/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /tst/export-types-all/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t1/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t1/m2.js: -------------------------------------------------------------------------------- 1 | console.log('Pizza is life'); 2 | 3 | -------------------------------------------------------------------------------- /tst/export-types-all/t1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t1/main.js -------------------------------------------------------------------------------- /tst/export-types-all/t2/RWX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t2/RWX.json -------------------------------------------------------------------------------- /tst/export-types-all/t2/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t2/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t2/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t2/m2.js -------------------------------------------------------------------------------- /tst/export-types-all/t2/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t2/m3.js -------------------------------------------------------------------------------- /tst/export-types-all/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t2/main.js -------------------------------------------------------------------------------- /tst/export-types-all/t3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t3/main.js -------------------------------------------------------------------------------- /tst/export-types-all/t3/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t3/math.js -------------------------------------------------------------------------------- /tst/export-types-all/t4/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t4/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t4/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /tst/export-types-all/t5/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t5/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t5/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /tst/export-types-all/t6/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t6/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t6/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t6/m2.js -------------------------------------------------------------------------------- /tst/export-types-all/t6/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | console.log(m1); 4 | -------------------------------------------------------------------------------- /tst/export-types-all/t7/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t7/m1.js -------------------------------------------------------------------------------- /tst/export-types-all/t7/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-all/t7/m2.js -------------------------------------------------------------------------------- /tst/export-types-all/t7/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | console.log(m1); 4 | -------------------------------------------------------------------------------- /tst/export-types-effects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/.gitignore -------------------------------------------------------------------------------- /tst/export-types-effects/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/export-types-effects/t0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t0/main.js -------------------------------------------------------------------------------- /tst/export-types-effects/t0/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t0/math.js -------------------------------------------------------------------------------- /tst/export-types-effects/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t1/m1.js -------------------------------------------------------------------------------- /tst/export-types-effects/t1/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t1/m2.js -------------------------------------------------------------------------------- /tst/export-types-effects/t1/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t1/m3.js -------------------------------------------------------------------------------- /tst/export-types-effects/t1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t1/main.js -------------------------------------------------------------------------------- /tst/export-types-effects/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t2/main.js -------------------------------------------------------------------------------- /tst/export-types-effects/t2/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types-effects/t2/math.js -------------------------------------------------------------------------------- /tst/export-types/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/.gitignore -------------------------------------------------------------------------------- /tst/export-types/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/export-types/run-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/run-dynamic.sh -------------------------------------------------------------------------------- /tst/export-types/t0/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t0/correct.pwd.json -------------------------------------------------------------------------------- /tst/export-types/t0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t0/main.js -------------------------------------------------------------------------------- /tst/export-types/t0/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t0/math.js -------------------------------------------------------------------------------- /tst/export-types/t1/RWX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/RWX.json -------------------------------------------------------------------------------- /tst/export-types/t1/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/correct.pwd.json -------------------------------------------------------------------------------- /tst/export-types/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/m1.js -------------------------------------------------------------------------------- /tst/export-types/t1/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/m2.js -------------------------------------------------------------------------------- /tst/export-types/t1/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/m3.js -------------------------------------------------------------------------------- /tst/export-types/t1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t1/main.js -------------------------------------------------------------------------------- /tst/export-types/t2/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t2/correct.pwd.json -------------------------------------------------------------------------------- /tst/export-types/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t2/main.js -------------------------------------------------------------------------------- /tst/export-types/t2/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/export-types/t2/math.js -------------------------------------------------------------------------------- /tst/imports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/.gitignore -------------------------------------------------------------------------------- /tst/imports/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/imports/prologue.lya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/prologue.lya -------------------------------------------------------------------------------- /tst/imports/run-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/run-dynamic.sh -------------------------------------------------------------------------------- /tst/imports/t0/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t0/correct.pwd.json -------------------------------------------------------------------------------- /tst/imports/t0/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t0/m1.js -------------------------------------------------------------------------------- /tst/imports/t0/m2.js: -------------------------------------------------------------------------------- 1 | console.log('Pizza is life'); 2 | -------------------------------------------------------------------------------- /tst/imports/t0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t0/main.js -------------------------------------------------------------------------------- /tst/imports/t1/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t1/correct.pwd.json -------------------------------------------------------------------------------- /tst/imports/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t1/m1.js -------------------------------------------------------------------------------- /tst/imports/t1/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /tst/imports/t2/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t2/correct.pwd.json -------------------------------------------------------------------------------- /tst/imports/t2/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t2/m1.js -------------------------------------------------------------------------------- /tst/imports/t2/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t2/m2.js -------------------------------------------------------------------------------- /tst/imports/t2/m3.js: -------------------------------------------------------------------------------- 1 | require('./m1.js'); 2 | -------------------------------------------------------------------------------- /tst/imports/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t2/main.js -------------------------------------------------------------------------------- /tst/imports/t3/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t3/correct.pwd.json -------------------------------------------------------------------------------- /tst/imports/t3/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t3/m1.js -------------------------------------------------------------------------------- /tst/imports/t3/m2.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | -------------------------------------------------------------------------------- /tst/imports/t3/main.js: -------------------------------------------------------------------------------- 1 | var m1 = require('./m1.js'); 2 | 3 | -------------------------------------------------------------------------------- /tst/imports/t4/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t4/correct.pwd.json -------------------------------------------------------------------------------- /tst/imports/t4/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/imports/t4/main.js -------------------------------------------------------------------------------- /tst/libs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /tst/libs/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/libs/clone.sh -------------------------------------------------------------------------------- /tst/micro-packages/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | .git 3 | res.txt 4 | -------------------------------------------------------------------------------- /tst/micro-packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/README.md -------------------------------------------------------------------------------- /tst/micro-packages/algebra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/.gitignore -------------------------------------------------------------------------------- /tst/micro-packages/algebra/.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | docs 3 | -------------------------------------------------------------------------------- /tst/micro-packages/algebra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/algebra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/README.md -------------------------------------------------------------------------------- /tst/micro-packages/algebra/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/algebra/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/index.js -------------------------------------------------------------------------------- /tst/micro-packages/algebra/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/algebra/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/README.md -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/benchmark/code/arr-diff-4.0.0.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('../..'); 4 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/index.js -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/arr-diff/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/arr-diff/test.js -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/arr-flatten-1.0.1.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../..'); -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/compute-flatten.js: -------------------------------------------------------------------------------- 1 | module.exports = require('compute-flatten'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/flatit.js: -------------------------------------------------------------------------------- 1 | module.exports = require('flatit'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/flatten-array.js: -------------------------------------------------------------------------------- 1 | module.exports = require('flatten-array'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/flatten.js: -------------------------------------------------------------------------------- 1 | module.exports = require('flatten'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/just-flatten-it.js: -------------------------------------------------------------------------------- 1 | module.exports = require('just-flatten-it'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/lodash.flattendeep.js: -------------------------------------------------------------------------------- 1 | module.exports = require('lodash.flattendeep'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/m_flattened.js: -------------------------------------------------------------------------------- 1 | module.exports = require('m_flattened'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/arr-flatten/benchmark/code/utils-flatten.js: -------------------------------------------------------------------------------- 1 | module.exports = require('utils-flatten'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/array-last/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/array-last/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/array-last/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/array-last/test.js -------------------------------------------------------------------------------- /tst/micro-packages/array-range/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /tst/micro-packages/array.chunk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /tst/micro-packages/clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/clone.sh -------------------------------------------------------------------------------- /tst/micro-packages/concat-stream/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /tst/micro-packages/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/count.js -------------------------------------------------------------------------------- /tst/micro-packages/create-static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/create-static.sh -------------------------------------------------------------------------------- /tst/micro-packages/deep-bind/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/deep-bind/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/deep-bind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/deep-bind/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/deep-bind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/deep-bind/index.js -------------------------------------------------------------------------------- /tst/micro-packages/deep-bind/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/deep-bind/test.js -------------------------------------------------------------------------------- /tst/micro-packages/document-ready/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /tst/micro-packages/document-ready/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tst/micro-packages/document-ready/stats.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/file-size/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage -------------------------------------------------------------------------------- /tst/micro-packages/file-size/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/file-size/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/file-size/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/file-size/Makefile -------------------------------------------------------------------------------- /tst/micro-packages/file-size/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/file-size/index.js -------------------------------------------------------------------------------- /tst/micro-packages/file-size/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require should 2 | --slow 20 -------------------------------------------------------------------------------- /tst/micro-packages/fs-promise/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /tst/micro-packages/fs-promise/.jshintrc: -------------------------------------------------------------------------------- 1 | {"node":true} 2 | -------------------------------------------------------------------------------- /tst/micro-packages/fs-promise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/fs-promise/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/get-value/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/get-value/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/get-value/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/get-value/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/get-value/benchmark/code/get-value-fast.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../../').fast; 2 | -------------------------------------------------------------------------------- /tst/micro-packages/get-value/benchmark/code/libs/dot-prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dot-prop').get; 2 | -------------------------------------------------------------------------------- /tst/micro-packages/get-value/benchmark/code/libs/object-path.js: -------------------------------------------------------------------------------- 1 | module.exports = require('object-path').get; 2 | -------------------------------------------------------------------------------- /tst/micro-packages/get-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/get-value/index.js -------------------------------------------------------------------------------- /tst/micro-packages/getInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/getInfo.sh -------------------------------------------------------------------------------- /tst/micro-packages/getNumberRWX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/getNumberRWX.sh -------------------------------------------------------------------------------- /tst/micro-packages/group-array/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tst/micro-packages/has-key-deep/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /tst/micro-packages/has-value/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/has-value/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/has-value/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/has-value/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/has-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/has-value/index.js -------------------------------------------------------------------------------- /tst/micro-packages/has-value/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/has-value/test.js -------------------------------------------------------------------------------- /tst/micro-packages/he/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/.editorconfig -------------------------------------------------------------------------------- /tst/micro-packages/he/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/.gitattributes -------------------------------------------------------------------------------- /tst/micro-packages/he/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/.gitignore -------------------------------------------------------------------------------- /tst/micro-packages/he/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/.travis.yml -------------------------------------------------------------------------------- /tst/micro-packages/he/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/Gruntfile.js -------------------------------------------------------------------------------- /tst/micro-packages/he/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/LICENSE-MIT.txt -------------------------------------------------------------------------------- /tst/micro-packages/he/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/README.md -------------------------------------------------------------------------------- /tst/micro-packages/he/_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/_he.js -------------------------------------------------------------------------------- /tst/micro-packages/he/bin/he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/bin/he -------------------------------------------------------------------------------- /tst/micro-packages/he/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/bower.json -------------------------------------------------------------------------------- /tst/micro-packages/he/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/component.json -------------------------------------------------------------------------------- /tst/micro-packages/he/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/he.js -------------------------------------------------------------------------------- /tst/micro-packages/he/man/he.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/man/he.1 -------------------------------------------------------------------------------- /tst/micro-packages/he/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/package.json -------------------------------------------------------------------------------- /tst/micro-packages/he/src/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/src/he.js -------------------------------------------------------------------------------- /tst/micro-packages/he/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/static.json -------------------------------------------------------------------------------- /tst/micro-packages/he/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/he/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/he/tests/tests.js -------------------------------------------------------------------------------- /tst/micro-packages/identity-function/_index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x } 2 | -------------------------------------------------------------------------------- /tst/micro-packages/in-array/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/in-array/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/in-array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/README.md -------------------------------------------------------------------------------- /tst/micro-packages/in-array/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/in-array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/index.js -------------------------------------------------------------------------------- /tst/micro-packages/in-array/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/in-array/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/in-array/test.js -------------------------------------------------------------------------------- /tst/micro-packages/installNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/installNode.sh -------------------------------------------------------------------------------- /tst/micro-packages/is-empty-object/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /tst/micro-packages/is-empty-object/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | tags 4 | -------------------------------------------------------------------------------- /tst/micro-packages/is-generator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | coverage 4 | -------------------------------------------------------------------------------- /tst/micro-packages/is-number/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tst/micro-packages/is-number/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-number/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/is-number/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-number/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/is-number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-number/index.js -------------------------------------------------------------------------------- /tst/micro-packages/is-number/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-number/test.js -------------------------------------------------------------------------------- /tst/micro-packages/is-promise/.gitignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /tst/micro-packages/is-promise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-promise/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/is-promise/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-promise/test.js -------------------------------------------------------------------------------- /tst/micro-packages/is-sorted/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tst/micro-packages/is-sorted/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-sorted/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/is-sorted/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/is-sorted/index.js -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/README.md -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/index.js -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/left-pad/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/left-pad/test.js -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/.gitignore -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/.npmignore -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/README.md -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/ndarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/ndarray.js -------------------------------------------------------------------------------- /tst/micro-packages/ndarray/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/ndarray/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/node-du/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tst/micro-packages/node-du/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/.jshintrc -------------------------------------------------------------------------------- /tst/micro-packages/node-du/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/node-du/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/README.md -------------------------------------------------------------------------------- /tst/micro-packages/node-du/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/node-du/du.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/du.js -------------------------------------------------------------------------------- /tst/micro-packages/node-du/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/index.js -------------------------------------------------------------------------------- /tst/micro-packages/node-du/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/node-du/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-du/tests.js -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-glob/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/_glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-glob/_glob.js -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-glob/glob.js -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/prof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-glob/prof.sh -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-glob/sync.js -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/.abcdef/x/y/z/a: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/abcdef/g/h: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/abcfed/g/h: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/b/c/d: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/bc/e/f: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/c/d/c/b: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/cb/e/f: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/symlink/a/b/c: -------------------------------------------------------------------------------- 1 | ../.. -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/x/.y/b: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-glob/test/fixtures/a/z/.y/b: -------------------------------------------------------------------------------- 1 | i like tests -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | .lock-wscript 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/.npmignore: -------------------------------------------------------------------------------- 1 | Cakefile 2 | src/ 3 | -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-slug/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/_slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-slug/_slug.js -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/node-slug/slug.js -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/static.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/node-slug/test.js: -------------------------------------------------------------------------------- 1 | console.log(require('./slug')('😹')); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/node-stream-spigot/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tern-port 3 | -------------------------------------------------------------------------------- /tst/micro-packages/normalize-pkg/test/fixtures/bin.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /tst/micro-packages/normalize-pkg/test/fixtures/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": null 3 | } -------------------------------------------------------------------------------- /tst/micro-packages/normalize-pkg/test/fixtures/project-bin/bin/foo.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | -------------------------------------------------------------------------------- /tst/micro-packages/normalize-pkg/test/fixtures/project-bin/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | -------------------------------------------------------------------------------- /tst/micro-packages/normalize-pkg/test/fixtures/project/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() {}; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/not-defined/.npmignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /tst/micro-packages/once/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/.travis.yml -------------------------------------------------------------------------------- /tst/micro-packages/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/once/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/README.md -------------------------------------------------------------------------------- /tst/micro-packages/once/_once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/_once.js -------------------------------------------------------------------------------- /tst/micro-packages/once/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/once.js -------------------------------------------------------------------------------- /tst/micro-packages/once/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/package.json -------------------------------------------------------------------------------- /tst/micro-packages/once/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/static.json -------------------------------------------------------------------------------- /tst/micro-packages/once/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/once/test/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/once/test/once.js -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/README.md -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/1.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 1]; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/10-custom-char.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 10, '0']; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/10-num.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = [123, 10]; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/10.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 10]; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/100-custom-char.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 100, '0']; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/100-num.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = [123, 100]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/100.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 100]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/1000-custom-char.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 1000, '0']; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/1000.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 1000]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/15.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 15]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/150.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 150]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/2.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 2]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/200.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 200]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/2000.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 2000]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/25.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 25]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/3.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 3]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/5-custom-char.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 5, '0']; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/5.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 5]; 4 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/50.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['xyz', 50]; 4 | 5 | -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/benchmark/fixtures/zero.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | module.exports = ['', 10]; -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/index.js -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/pad-left/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pad-left/test.js -------------------------------------------------------------------------------- /tst/micro-packages/parse-next-json-value/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | private 3 | .DS_Store 4 | .nyc_output 5 | *.swp 6 | -------------------------------------------------------------------------------- /tst/micro-packages/parse-next-json-value/.npmignore: -------------------------------------------------------------------------------- 1 | private/ 2 | -------------------------------------------------------------------------------- /tst/micro-packages/periods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/periods/README.md -------------------------------------------------------------------------------- /tst/micro-packages/periods/periods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/periods/periods.js -------------------------------------------------------------------------------- /tst/micro-packages/periods/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/periods/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/property-validator/examples/.babelrc: -------------------------------------------------------------------------------- 1 | { "presets": ["es2015"] } 2 | -------------------------------------------------------------------------------- /tst/micro-packages/property-validator/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules -------------------------------------------------------------------------------- /tst/micro-packages/pure-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pure-time -------------------------------------------------------------------------------- /tst/micro-packages/pureTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/pureTime -------------------------------------------------------------------------------- /tst/micro-packages/removeNode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/removeNode.sh -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [isaacs] 4 | -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/.travis.yml -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/README.md -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/_rimraf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/_rimraf.js -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/bin.js -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/rimraf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/rimraf.js -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/static.json -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/rimraf/test/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rimraf/test/bin.js -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .npm 3 | logs 4 | *.log 5 | -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/.travis.yml -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/CHANGELOG.md -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/LICENSE.md -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/README.md -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/index.js -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/package.json -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/static.json -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/test/test.js -------------------------------------------------------------------------------- /tst/micro-packages/rtrim/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rtrim/yarn.lock -------------------------------------------------------------------------------- /tst/micro-packages/run-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-check.sh -------------------------------------------------------------------------------- /tst/micro-packages/run-perf-pure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-perf-pure.sh -------------------------------------------------------------------------------- /tst/micro-packages/run-perf-tm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-perf-tm.sh -------------------------------------------------------------------------------- /tst/micro-packages/run-perf-vRWX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-perf-vRWX.sh -------------------------------------------------------------------------------- /tst/micro-packages/run-perf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-perf.sh -------------------------------------------------------------------------------- /tst/micro-packages/run-types.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/run-types.sh -------------------------------------------------------------------------------- /tst/micro-packages/rwx.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/rwx.tsv -------------------------------------------------------------------------------- /tst/micro-packages/schema-inspector/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *~ 3 | #*# 4 | npm-debug.log 5 | bower_components 6 | -------------------------------------------------------------------------------- /tst/micro-packages/schema-inspector/_index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/schema-inspector'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/set-value/.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/set-value/.verb.md -------------------------------------------------------------------------------- /tst/micro-packages/set-value/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: jonschlinkert 2 | tidelift: npm/set-value 3 | -------------------------------------------------------------------------------- /tst/micro-packages/set-value/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/set-value/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/set-value/benchmark/code/dot-prop.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dot-prop').set; 2 | -------------------------------------------------------------------------------- /tst/micro-packages/set-value/benchmark/code/lodash-set.js: -------------------------------------------------------------------------------- 1 | module.exports = require('lodash.set'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/set-value/benchmark/code/set-value.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../..'); 2 | -------------------------------------------------------------------------------- /tst/micro-packages/set-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/set-value/index.js -------------------------------------------------------------------------------- /tst/micro-packages/set-value/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/set-value/test.js -------------------------------------------------------------------------------- /tst/micro-packages/star_diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/star_diff.sh -------------------------------------------------------------------------------- /tst/micro-packages/static-props/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /tst/micro-packages/staticFiles/staticbasestaticFiles:.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/staticFiles/staticbothstaticFiles:.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/staticFiles/staticfieldstaticFiles:.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/staticFiles/staticstaticFiles:.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/micro-packages/through2-map/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tern-port 3 | -------------------------------------------------------------------------------- /tst/micro-packages/through2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | -------------------------------------------------------------------------------- /tst/micro-packages/through2/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/through2/.jshintrc -------------------------------------------------------------------------------- /tst/micro-packages/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml 4 | .nyc_output/ 5 | -------------------------------------------------------------------------------- /tst/micro-packages/through2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/through2/README.md -------------------------------------------------------------------------------- /tst/micro-packages/through2/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/through2/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/time -------------------------------------------------------------------------------- /tst/micro-packages/time-stamp/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tst/micro-packages/time-stamp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/time-stamp/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/time-stamp/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/time-stamp/test.js -------------------------------------------------------------------------------- /tst/micro-packages/timeOnly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/timeOnly.txt -------------------------------------------------------------------------------- /tst/micro-packages/timePureDeathStar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/timePureDeathStar -------------------------------------------------------------------------------- /tst/micro-packages/unordered-array-remove/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tst/micro-packages/usertime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/usertime -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/.gitignore -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/.jshintrc -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/.travis.yml -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/LICENSE -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/README.md -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/_index.js -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/index.js -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/static.json -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/stats.txt -------------------------------------------------------------------------------- /tst/micro-packages/zipmap/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/micro-packages/zipmap/test.js -------------------------------------------------------------------------------- /tst/native/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/native/README -------------------------------------------------------------------------------- /tst/native/crypt3async.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/native/crypt3async.node -------------------------------------------------------------------------------- /tst/native/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/native/test.js -------------------------------------------------------------------------------- /tst/profiling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/.gitignore -------------------------------------------------------------------------------- /tst/profiling/correctness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/correctness.js -------------------------------------------------------------------------------- /tst/profiling/epilogue.lya: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/profiling/prologue-profiling.lya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/prologue-profiling.lya -------------------------------------------------------------------------------- /tst/profiling/run-dynamic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/run-dynamic.sh -------------------------------------------------------------------------------- /tst/profiling/t0/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t0/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t0/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t0/m1.js -------------------------------------------------------------------------------- /tst/profiling/t0/m2.js: -------------------------------------------------------------------------------- 1 | console.log('Pizza is life'); 2 | -------------------------------------------------------------------------------- /tst/profiling/t0/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t0/main.js -------------------------------------------------------------------------------- /tst/profiling/t1/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t1/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t1/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t1/m1.js -------------------------------------------------------------------------------- /tst/profiling/t1/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t1/m2.js -------------------------------------------------------------------------------- /tst/profiling/t1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t1/main.js -------------------------------------------------------------------------------- /tst/profiling/t2/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t2/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t2/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t2/m1.js -------------------------------------------------------------------------------- /tst/profiling/t2/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t2/m2.js -------------------------------------------------------------------------------- /tst/profiling/t2/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t2/m3.js -------------------------------------------------------------------------------- /tst/profiling/t2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t2/main.js -------------------------------------------------------------------------------- /tst/profiling/t3/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t3/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/m1.js -------------------------------------------------------------------------------- /tst/profiling/t3/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/m2.js -------------------------------------------------------------------------------- /tst/profiling/t3/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/m3.js -------------------------------------------------------------------------------- /tst/profiling/t3/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/m4.js -------------------------------------------------------------------------------- /tst/profiling/t3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t3/main.js -------------------------------------------------------------------------------- /tst/profiling/t4/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t4/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t4/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t4/m1.js -------------------------------------------------------------------------------- /tst/profiling/t4/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t4/m2.js -------------------------------------------------------------------------------- /tst/profiling/t4/m3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t4/m3.js -------------------------------------------------------------------------------- /tst/profiling/t4/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t4/main.js -------------------------------------------------------------------------------- /tst/profiling/t5/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t5/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t5/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t5/m1.js -------------------------------------------------------------------------------- /tst/profiling/t5/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t5/m2.js -------------------------------------------------------------------------------- /tst/profiling/t5/m3.js: -------------------------------------------------------------------------------- 1 | console.log('This is m3'); 2 | -------------------------------------------------------------------------------- /tst/profiling/t5/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t5/m4.js -------------------------------------------------------------------------------- /tst/profiling/t5/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t5/main.js -------------------------------------------------------------------------------- /tst/profiling/t6/correct.pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t6/correct.pwd.json -------------------------------------------------------------------------------- /tst/profiling/t6/m1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t6/m1.js -------------------------------------------------------------------------------- /tst/profiling/t6/m2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t6/m2.js -------------------------------------------------------------------------------- /tst/profiling/t6/m3.js: -------------------------------------------------------------------------------- 1 | console.log('This is m3'); 2 | -------------------------------------------------------------------------------- /tst/profiling/t6/m4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t6/m4.js -------------------------------------------------------------------------------- /tst/profiling/t6/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/profiling/t6/main.js -------------------------------------------------------------------------------- /tst/repos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/README.md -------------------------------------------------------------------------------- /tst/repos/chalk/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/.editorconfig -------------------------------------------------------------------------------- /tst/repos/chalk/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/.flowconfig -------------------------------------------------------------------------------- /tst/repos/chalk/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /tst/repos/chalk/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /tst/repos/chalk/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tst/repos/chalk/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/.travis.yml -------------------------------------------------------------------------------- /tst/repos/chalk/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/benchmark.js -------------------------------------------------------------------------------- /tst/repos/chalk/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/code-of-conduct.md -------------------------------------------------------------------------------- /tst/repos/chalk/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/contributing.md -------------------------------------------------------------------------------- /tst/repos/chalk/examples/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/examples/rainbow.js -------------------------------------------------------------------------------- /tst/repos/chalk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/index.d.ts -------------------------------------------------------------------------------- /tst/repos/chalk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/index.js -------------------------------------------------------------------------------- /tst/repos/chalk/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/index.js.flow -------------------------------------------------------------------------------- /tst/repos/chalk/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/index.test-d.ts -------------------------------------------------------------------------------- /tst/repos/chalk/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/license -------------------------------------------------------------------------------- /tst/repos/chalk/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/media/logo.png -------------------------------------------------------------------------------- /tst/repos/chalk/media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/media/logo.svg -------------------------------------------------------------------------------- /tst/repos/chalk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/package.json -------------------------------------------------------------------------------- /tst/repos/chalk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/readme.md -------------------------------------------------------------------------------- /tst/repos/chalk/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/templates.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/_fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/_fixture.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/_flow.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/chalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/chalk.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/constructor.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/enabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/enabled.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/instance.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/level.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/visible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/visible.js -------------------------------------------------------------------------------- /tst/repos/chalk/test/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/test/windows.js -------------------------------------------------------------------------------- /tst/repos/chalk/timebind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/timebind.txt -------------------------------------------------------------------------------- /tst/repos/chalk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/chalk/tsconfig.json -------------------------------------------------------------------------------- /tst/repos/cheerio/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/.eslintrc.json -------------------------------------------------------------------------------- /tst/repos/cheerio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/.gitignore -------------------------------------------------------------------------------- /tst/repos/cheerio/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/.travis.yml -------------------------------------------------------------------------------- /tst/repos/cheerio/CNAME: -------------------------------------------------------------------------------- 1 | cheerio.js.org -------------------------------------------------------------------------------- /tst/repos/cheerio/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/CONTRIBUTING.md -------------------------------------------------------------------------------- /tst/repos/cheerio/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/History.md -------------------------------------------------------------------------------- /tst/repos/cheerio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/LICENSE -------------------------------------------------------------------------------- /tst/repos/cheerio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/Makefile -------------------------------------------------------------------------------- /tst/repos/cheerio/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/Readme.md -------------------------------------------------------------------------------- /tst/repos/cheerio/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/_config.yml -------------------------------------------------------------------------------- /tst/repos/cheerio/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/_index.js -------------------------------------------------------------------------------- /tst/repos/cheerio/benchmark/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/benchmark/suite.js -------------------------------------------------------------------------------- /tst/repos/cheerio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/index.js -------------------------------------------------------------------------------- /tst/repos/cheerio/jsdoc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/jsdoc-config.json -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/api/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/api/css.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/api/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/api/forms.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/cheerio.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/options.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/parse.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/static.js -------------------------------------------------------------------------------- /tst/repos/cheerio/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/lib/utils.js -------------------------------------------------------------------------------- /tst/repos/cheerio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/package.json -------------------------------------------------------------------------------- /tst/repos/cheerio/scripts/prepublish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/scripts/prepublish -------------------------------------------------------------------------------- /tst/repos/cheerio/test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/.eslintrc.json -------------------------------------------------------------------------------- /tst/repos/cheerio/test/api/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/api/css.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/api/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/api/forms.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/api/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/api/utils.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/cheerio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/cheerio.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/fixtures.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter list 2 | --growl -------------------------------------------------------------------------------- /tst/repos/cheerio/test/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/parse.js -------------------------------------------------------------------------------- /tst/repos/cheerio/test/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/cheerio/test/xml.js -------------------------------------------------------------------------------- /tst/repos/classnames/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/.editorconfig -------------------------------------------------------------------------------- /tst/repos/classnames/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/.gitignore -------------------------------------------------------------------------------- /tst/repos/classnames/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/.npmignore -------------------------------------------------------------------------------- /tst/repos/classnames/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/.travis.yml -------------------------------------------------------------------------------- /tst/repos/classnames/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/CONTRIBUTING.md -------------------------------------------------------------------------------- /tst/repos/classnames/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/HISTORY.md -------------------------------------------------------------------------------- /tst/repos/classnames/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/LICENSE -------------------------------------------------------------------------------- /tst/repos/classnames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/README.md -------------------------------------------------------------------------------- /tst/repos/classnames/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/_index.js -------------------------------------------------------------------------------- /tst/repos/classnames/bind.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/bind.d.ts -------------------------------------------------------------------------------- /tst/repos/classnames/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/bind.js -------------------------------------------------------------------------------- /tst/repos/classnames/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/bower.json -------------------------------------------------------------------------------- /tst/repos/classnames/dedupe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/dedupe.js -------------------------------------------------------------------------------- /tst/repos/classnames/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/index.d.ts -------------------------------------------------------------------------------- /tst/repos/classnames/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/index.js -------------------------------------------------------------------------------- /tst/repos/classnames/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/package.json -------------------------------------------------------------------------------- /tst/repos/classnames/test/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/test/bind.js -------------------------------------------------------------------------------- /tst/repos/classnames/test/dedupe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/test/dedupe.js -------------------------------------------------------------------------------- /tst/repos/classnames/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/test/index.js -------------------------------------------------------------------------------- /tst/repos/classnames/timebind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/classnames/timebind.txt -------------------------------------------------------------------------------- /tst/repos/color/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/LICENSE -------------------------------------------------------------------------------- /tst/repos/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/README.md -------------------------------------------------------------------------------- /tst/repos/color/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/ROADMAP.md -------------------------------------------------------------------------------- /tst/repos/color/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/index.d.ts -------------------------------------------------------------------------------- /tst/repos/color/lib/_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/_index.js -------------------------------------------------------------------------------- /tst/repos/color/lib/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/colors.js -------------------------------------------------------------------------------- /tst/repos/color/lib/custom/trap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/custom/trap.js -------------------------------------------------------------------------------- /tst/repos/color/lib/custom/zalgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/custom/zalgo.js -------------------------------------------------------------------------------- /tst/repos/color/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/index.js -------------------------------------------------------------------------------- /tst/repos/color/lib/maps/america.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/maps/america.js -------------------------------------------------------------------------------- /tst/repos/color/lib/maps/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/maps/rainbow.js -------------------------------------------------------------------------------- /tst/repos/color/lib/maps/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/maps/random.js -------------------------------------------------------------------------------- /tst/repos/color/lib/maps/zebra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/maps/zebra.js -------------------------------------------------------------------------------- /tst/repos/color/lib/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/lib/styles.js -------------------------------------------------------------------------------- /tst/repos/color/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/package.json -------------------------------------------------------------------------------- /tst/repos/color/safe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/safe.d.ts -------------------------------------------------------------------------------- /tst/repos/color/safe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/safe.js -------------------------------------------------------------------------------- /tst/repos/color/tests/safe-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/color/tests/safe-test.js -------------------------------------------------------------------------------- /tst/repos/colorette/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/.gitignore -------------------------------------------------------------------------------- /tst/repos/colorette/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/.travis.yml -------------------------------------------------------------------------------- /tst/repos/colorette/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/LICENSE.md -------------------------------------------------------------------------------- /tst/repos/colorette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/README.md -------------------------------------------------------------------------------- /tst/repos/colorette/bench/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/bench/index.js -------------------------------------------------------------------------------- /tst/repos/colorette/colorette.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/colorette.d.ts -------------------------------------------------------------------------------- /tst/repos/colorette/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/index.js -------------------------------------------------------------------------------- /tst/repos/colorette/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/package.json -------------------------------------------------------------------------------- /tst/repos/colorette/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/test/index.js -------------------------------------------------------------------------------- /tst/repos/colorette/timebind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/colorette/timebind.txt -------------------------------------------------------------------------------- /tst/repos/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/LICENSE -------------------------------------------------------------------------------- /tst/repos/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/README.md -------------------------------------------------------------------------------- /tst/repos/debug/coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/coverage/lcov.info -------------------------------------------------------------------------------- /tst/repos/debug/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/karma.conf.js -------------------------------------------------------------------------------- /tst/repos/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/package.json -------------------------------------------------------------------------------- /tst/repos/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/src/browser.js -------------------------------------------------------------------------------- /tst/repos/debug/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/src/common.js -------------------------------------------------------------------------------- /tst/repos/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/src/index.js -------------------------------------------------------------------------------- /tst/repos/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/src/node.js -------------------------------------------------------------------------------- /tst/repos/debug/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/debug/test.js -------------------------------------------------------------------------------- /tst/repos/minimatch/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | -------------------------------------------------------------------------------- /tst/repos/minimatch/.npmignore: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /tst/repos/minimatch/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/.travis.yml -------------------------------------------------------------------------------- /tst/repos/minimatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/LICENSE -------------------------------------------------------------------------------- /tst/repos/minimatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/README.md -------------------------------------------------------------------------------- /tst/repos/minimatch/_minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/_minimatch.js -------------------------------------------------------------------------------- /tst/repos/minimatch/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/benchmark.js -------------------------------------------------------------------------------- /tst/repos/minimatch/minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/minimatch.js -------------------------------------------------------------------------------- /tst/repos/minimatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/package.json -------------------------------------------------------------------------------- /tst/repos/minimatch/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/test/basic.js -------------------------------------------------------------------------------- /tst/repos/minimatch/test/redos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimatch/test/redos.js -------------------------------------------------------------------------------- /tst/repos/minimist/long/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimist/long/long.js -------------------------------------------------------------------------------- /tst/repos/minimist/short/short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/minimist/short/short.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/LICENSE -------------------------------------------------------------------------------- /tst/repos/mkdirp/bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/bin/cmd.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/bin/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/bin/usage.txt -------------------------------------------------------------------------------- /tst/repos/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/examples/pow.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/index.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/package.json -------------------------------------------------------------------------------- /tst/repos/mkdirp/readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/readme.markdown -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/.travis.yml -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/LICENSE -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/bin/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/bin/cmd.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/index.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/package.json -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/test/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/test/perm.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/test/race.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/test/race.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/test/rel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/test/rel.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/test/root.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/repo/test/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/repo/test/sync.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/chmod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/chmod.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/clobber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/clobber.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/mkdirp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/mkdirp.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/perm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/perm.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/perm_sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/perm_sync.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/race.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/race.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/rel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/rel.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/return.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/return.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/root.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/sync.js -------------------------------------------------------------------------------- /tst/repos/mkdirp/test/umask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/mkdirp/test/umask.js -------------------------------------------------------------------------------- /tst/repos/moment/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/repos/moment/main.js -------------------------------------------------------------------------------- /tst/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results.txt -------------------------------------------------------------------------------- /tst/results/RWX/check_res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/RWX/check_res -------------------------------------------------------------------------------- /tst/results/RWX/star_res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/RWX/star_res -------------------------------------------------------------------------------- /tst/results/context.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context.ods -------------------------------------------------------------------------------- /tst/results/context/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/all -------------------------------------------------------------------------------- /tst/results/context/all_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/all_correct -------------------------------------------------------------------------------- /tst/results/context/es-globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/es-globals -------------------------------------------------------------------------------- /tst/results/context/module-locals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/module-locals -------------------------------------------------------------------------------- /tst/results/context/module-returns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/module-returns -------------------------------------------------------------------------------- /tst/results/context/node-globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/node-globals -------------------------------------------------------------------------------- /tst/results/context/user-globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/context/user-globals -------------------------------------------------------------------------------- /tst/results/deathStar/callNumbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/deathStar/callNumbers -------------------------------------------------------------------------------- /tst/results/deathStar/globalOnly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/deathStar/globalOnly -------------------------------------------------------------------------------- /tst/results/deathStar/profiling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/deathStar/profiling -------------------------------------------------------------------------------- /tst/results/depth.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth.ods -------------------------------------------------------------------------------- /tst/results/depth/d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d0 -------------------------------------------------------------------------------- /tst/results/depth/d0_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d0_correct -------------------------------------------------------------------------------- /tst/results/depth/d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d1 -------------------------------------------------------------------------------- /tst/results/depth/d10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d10 -------------------------------------------------------------------------------- /tst/results/depth/d10_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d10_correct -------------------------------------------------------------------------------- /tst/results/depth/d11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d11 -------------------------------------------------------------------------------- /tst/results/depth/d11_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d11_correct -------------------------------------------------------------------------------- /tst/results/depth/d12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d12 -------------------------------------------------------------------------------- /tst/results/depth/d12_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d12_correct -------------------------------------------------------------------------------- /tst/results/depth/d13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d13 -------------------------------------------------------------------------------- /tst/results/depth/d13_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d13_correct -------------------------------------------------------------------------------- /tst/results/depth/d14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d14 -------------------------------------------------------------------------------- /tst/results/depth/d14_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d14_correct -------------------------------------------------------------------------------- /tst/results/depth/d15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d15 -------------------------------------------------------------------------------- /tst/results/depth/d15_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d15_correct -------------------------------------------------------------------------------- /tst/results/depth/d1_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d1_correct -------------------------------------------------------------------------------- /tst/results/depth/d2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d2 -------------------------------------------------------------------------------- /tst/results/depth/d2_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d2_correct -------------------------------------------------------------------------------- /tst/results/depth/d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d3 -------------------------------------------------------------------------------- /tst/results/depth/d3_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d3_correct -------------------------------------------------------------------------------- /tst/results/depth/d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d4 -------------------------------------------------------------------------------- /tst/results/depth/d4_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d4_correct -------------------------------------------------------------------------------- /tst/results/depth/d5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d5 -------------------------------------------------------------------------------- /tst/results/depth/d5_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d5_correct -------------------------------------------------------------------------------- /tst/results/depth/d6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d6 -------------------------------------------------------------------------------- /tst/results/depth/d6_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d6_correct -------------------------------------------------------------------------------- /tst/results/depth/d7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d7 -------------------------------------------------------------------------------- /tst/results/depth/d7_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d7_correct -------------------------------------------------------------------------------- /tst/results/depth/d8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d8 -------------------------------------------------------------------------------- /tst/results/depth/d8_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d8_correct -------------------------------------------------------------------------------- /tst/results/depth/d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d9 -------------------------------------------------------------------------------- /tst/results/depth/d9_correct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth/d9_correct -------------------------------------------------------------------------------- /tst/results/depth_no_children.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/depth_no_children.ods -------------------------------------------------------------------------------- /tst/results/extra.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/extra.ods -------------------------------------------------------------------------------- /tst/results/getResults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/getResults.sh -------------------------------------------------------------------------------- /tst/results/old_context.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/old_context.ods -------------------------------------------------------------------------------- /tst/results/old_context/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/old_context/all -------------------------------------------------------------------------------- /tst/results/old_context/es-globals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/old_context/es-globals -------------------------------------------------------------------------------- /tst/results/old_context/onlyWith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/old_context/onlyWith -------------------------------------------------------------------------------- /tst/results/perf/100_itter_RWX.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf/100_itter_RWX.ods -------------------------------------------------------------------------------- /tst/results/perf/CALL_NUMBERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf/CALL_NUMBERS -------------------------------------------------------------------------------- /tst/results/perf/GLOBAL_ONLY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf/GLOBAL_ONLY -------------------------------------------------------------------------------- /tst/results/perf/RWX_PERFORMANCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf/RWX_PERFORMANCE -------------------------------------------------------------------------------- /tst/results/perf/timeOnly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf/timeOnly.txt -------------------------------------------------------------------------------- /tst/results/perf_with_Time/RWX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/perf_with_Time/RWX.txt -------------------------------------------------------------------------------- /tst/results/stars/Dbase-star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/stars/Dbase-star -------------------------------------------------------------------------------- /tst/results/stars/Dprop-star: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/stars/Dprop-star -------------------------------------------------------------------------------- /tst/results/stars/bothStar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/results/stars/bothStar -------------------------------------------------------------------------------- /tst/run-lya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/run-lya.sh -------------------------------------------------------------------------------- /tst/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/run-tests.sh -------------------------------------------------------------------------------- /tst/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/run_all.sh -------------------------------------------------------------------------------- /tst/sandboxed-eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sandboxed-eval.js -------------------------------------------------------------------------------- /tst/scale/.gitignore: -------------------------------------------------------------------------------- 1 | packages/ 2 | -------------------------------------------------------------------------------- /tst/scale/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/scale/build.sh -------------------------------------------------------------------------------- /tst/scale/mostDep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/scale/mostDep.txt -------------------------------------------------------------------------------- /tst/sec/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/count.js -------------------------------------------------------------------------------- /tst/sec/e/js/a.js: -------------------------------------------------------------------------------- 1 | console.log(1); 2 | global.x = 3; 3 | -------------------------------------------------------------------------------- /tst/sec/e/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/e/main.js -------------------------------------------------------------------------------- /tst/sec/e/sbx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/e/sbx.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output -------------------------------------------------------------------------------- /tst/sec/fast-redact/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output -------------------------------------------------------------------------------- /tst/sec/fast-redact/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tst/sec/fast-redact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/index.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/lib/parse.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/lib/rx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/lib/rx.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/lib/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/lib/state.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/lya.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/package.json -------------------------------------------------------------------------------- /tst/sec/fast-redact/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/poc.js -------------------------------------------------------------------------------- /tst/sec/fast-redact/readme.md: -------------------------------------------------------------------------------- 1 | # fast-redact 2 | 3 | -------------------------------------------------------------------------------- /tst/sec/fast-redact/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/static.json -------------------------------------------------------------------------------- /tst/sec/fast-redact/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fast-redact/test/index.js -------------------------------------------------------------------------------- /tst/sec/fs-path/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fs-path/lya.js -------------------------------------------------------------------------------- /tst/sec/fs-path/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fs-path/poc.js -------------------------------------------------------------------------------- /tst/sec/fs-path/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/fs-path/static.json -------------------------------------------------------------------------------- /tst/sec/mathjs/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/mathjs/lya.js -------------------------------------------------------------------------------- /tst/sec/mathjs/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/mathjs/math.js -------------------------------------------------------------------------------- /tst/sec/mathjs/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/mathjs/poc.js -------------------------------------------------------------------------------- /tst/sec/mathjs/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/mathjs/static.json -------------------------------------------------------------------------------- /tst/sec/morgan/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | -------------------------------------------------------------------------------- /tst/sec/morgan/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /tst/sec/morgan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/.gitignore -------------------------------------------------------------------------------- /tst/sec/morgan/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/.travis.yml -------------------------------------------------------------------------------- /tst/sec/morgan/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/HISTORY.md -------------------------------------------------------------------------------- /tst/sec/morgan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/LICENSE -------------------------------------------------------------------------------- /tst/sec/morgan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/README.md -------------------------------------------------------------------------------- /tst/sec/morgan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/index.js -------------------------------------------------------------------------------- /tst/sec/morgan/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/lya.js -------------------------------------------------------------------------------- /tst/sec/morgan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/package.json -------------------------------------------------------------------------------- /tst/sec/morgan/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/poc.js -------------------------------------------------------------------------------- /tst/sec/morgan/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/static.json -------------------------------------------------------------------------------- /tst/sec/morgan/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/test/.eslintrc -------------------------------------------------------------------------------- /tst/sec/morgan/test/morgan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/morgan/test/morgan.js -------------------------------------------------------------------------------- /tst/sec/node_serialize/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/node_serialize/lya.js -------------------------------------------------------------------------------- /tst/sec/node_serialize/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/node_serialize/poc.js -------------------------------------------------------------------------------- /tst/sec/node_serialize/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/node_serialize/static.json -------------------------------------------------------------------------------- /tst/sec/pixl-class/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/pixl-class/lya.js -------------------------------------------------------------------------------- /tst/sec/pixl-class/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/pixl-class/poc.js -------------------------------------------------------------------------------- /tst/sec/pixl-class/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/pixl-class/static.json -------------------------------------------------------------------------------- /tst/sec/safe-eval/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safe-eval/index.js -------------------------------------------------------------------------------- /tst/sec/safe-eval/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safe-eval/lya.js -------------------------------------------------------------------------------- /tst/sec/safe-eval/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safe-eval/poc.js -------------------------------------------------------------------------------- /tst/sec/safe-eval/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safe-eval/static.json -------------------------------------------------------------------------------- /tst/sec/safer-eval/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/lya.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/poc.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/src/browser.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/src/clones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/src/clones.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/src/common.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/src/index.js -------------------------------------------------------------------------------- /tst/sec/safer-eval/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/safer-eval/static.json -------------------------------------------------------------------------------- /tst/sec/serialize_js/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/lya.js -------------------------------------------------------------------------------- /tst/sec/serialize_js/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/poc.js -------------------------------------------------------------------------------- /tst/sec/serialize_js/ser/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/* 2 | -------------------------------------------------------------------------------- /tst/sec/serialize_js/ser/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | doc/ 4 | tmp/ 5 | *.log 6 | *.tgz 7 | -------------------------------------------------------------------------------- /tst/sec/serialize_js/ser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/ser/LICENSE -------------------------------------------------------------------------------- /tst/sec/serialize_js/ser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/ser/Makefile -------------------------------------------------------------------------------- /tst/sec/serialize_js/ser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/ser/README.md -------------------------------------------------------------------------------- /tst/sec/serialize_js/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/serialize_js/static.json -------------------------------------------------------------------------------- /tst/sec/static-eval/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/static-eval/index.js -------------------------------------------------------------------------------- /tst/sec/static-eval/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/static-eval/lya.js -------------------------------------------------------------------------------- /tst/sec/static-eval/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/static-eval/package.json -------------------------------------------------------------------------------- /tst/sec/static-eval/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/static-eval/poc.js -------------------------------------------------------------------------------- /tst/sec/static-eval/static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/static-eval/static.json -------------------------------------------------------------------------------- /tst/sec/test/lya.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/test/lya.js -------------------------------------------------------------------------------- /tst/sec/test/poc.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tst/sec/vulns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/sec/vulns.md -------------------------------------------------------------------------------- /tst/tools/.gitignore: -------------------------------------------------------------------------------- 1 | *.jar 2 | -------------------------------------------------------------------------------- /tst/tools/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andromeda/lya/HEAD/tst/tools/fetch.sh --------------------------------------------------------------------------------