├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc ├── build.js ├── en │ ├── async │ │ ├── features.html │ │ └── features.md │ ├── central │ │ ├── features.html │ │ └── features.md │ ├── grandcentral │ │ ├── features.html │ │ └── features.md │ ├── index.html │ ├── index.md │ ├── list │ │ ├── features.html │ │ └── features.md │ └── overload │ │ ├── features.html │ │ └── features.md ├── index.html ├── index.md ├── javascripts │ ├── page.js │ ├── shBrushJScript.js │ ├── shCore.js │ └── xregexp.js ├── stylesheets │ ├── default.css │ ├── shCore.css │ └── shThemeDefault.css ├── template.mustache └── zh │ ├── async │ ├── features.html │ ├── features.md │ ├── introduction.html │ ├── introduction.md │ ├── secrets.html │ └── secrets.md │ ├── central │ ├── features.html │ ├── features.md │ ├── introduction.html │ ├── introduction.md │ ├── secrets.html │ └── secrets.md │ ├── grandcentral │ ├── features.html │ ├── features.md │ ├── introduction.html │ ├── introduction.md │ ├── secrets.html │ └── secrets.md │ ├── index.html │ ├── index.md │ ├── list │ ├── features.html │ ├── features.md │ ├── introduction.html │ ├── introduction.md │ ├── secrets.html │ └── secrets.md │ └── overload │ ├── features.html │ ├── features.md │ ├── introduction.html │ ├── introduction.md │ ├── secrets.html │ └── secrets.md ├── index.js ├── package.json ├── samples └── async │ ├── 00-async-ajax.html │ ├── 01-async-chain.html │ ├── async-ajax.js │ └── fake │ ├── json.js │ └── next-json.js ├── src ├── async.js ├── central.js ├── grandcentral.js ├── list.js └── overload.js └── test ├── index.html ├── javascripts ├── async.js ├── central.js ├── grandcentral.js ├── list.js ├── overload.js └── qunit.js └── stylesheets └── qunit.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/README.md -------------------------------------------------------------------------------- /doc/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/build.js -------------------------------------------------------------------------------- /doc/en/async/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/async/features.html -------------------------------------------------------------------------------- /doc/en/async/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/async/features.md -------------------------------------------------------------------------------- /doc/en/central/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/central/features.html -------------------------------------------------------------------------------- /doc/en/central/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/central/features.md -------------------------------------------------------------------------------- /doc/en/grandcentral/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/grandcentral/features.html -------------------------------------------------------------------------------- /doc/en/grandcentral/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/grandcentral/features.md -------------------------------------------------------------------------------- /doc/en/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/index.html -------------------------------------------------------------------------------- /doc/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/index.md -------------------------------------------------------------------------------- /doc/en/list/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/list/features.html -------------------------------------------------------------------------------- /doc/en/list/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/list/features.md -------------------------------------------------------------------------------- /doc/en/overload/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/overload/features.html -------------------------------------------------------------------------------- /doc/en/overload/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/en/overload/features.md -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/javascripts/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/javascripts/page.js -------------------------------------------------------------------------------- /doc/javascripts/shBrushJScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/javascripts/shBrushJScript.js -------------------------------------------------------------------------------- /doc/javascripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/javascripts/shCore.js -------------------------------------------------------------------------------- /doc/javascripts/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/javascripts/xregexp.js -------------------------------------------------------------------------------- /doc/stylesheets/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/stylesheets/default.css -------------------------------------------------------------------------------- /doc/stylesheets/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/stylesheets/shCore.css -------------------------------------------------------------------------------- /doc/stylesheets/shThemeDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/stylesheets/shThemeDefault.css -------------------------------------------------------------------------------- /doc/template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/template.mustache -------------------------------------------------------------------------------- /doc/zh/async/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/features.html -------------------------------------------------------------------------------- /doc/zh/async/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/features.md -------------------------------------------------------------------------------- /doc/zh/async/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/introduction.html -------------------------------------------------------------------------------- /doc/zh/async/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/introduction.md -------------------------------------------------------------------------------- /doc/zh/async/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/secrets.html -------------------------------------------------------------------------------- /doc/zh/async/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/async/secrets.md -------------------------------------------------------------------------------- /doc/zh/central/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/features.html -------------------------------------------------------------------------------- /doc/zh/central/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/features.md -------------------------------------------------------------------------------- /doc/zh/central/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/introduction.html -------------------------------------------------------------------------------- /doc/zh/central/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/introduction.md -------------------------------------------------------------------------------- /doc/zh/central/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/secrets.html -------------------------------------------------------------------------------- /doc/zh/central/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/central/secrets.md -------------------------------------------------------------------------------- /doc/zh/grandcentral/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/features.html -------------------------------------------------------------------------------- /doc/zh/grandcentral/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/features.md -------------------------------------------------------------------------------- /doc/zh/grandcentral/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/introduction.html -------------------------------------------------------------------------------- /doc/zh/grandcentral/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/introduction.md -------------------------------------------------------------------------------- /doc/zh/grandcentral/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/secrets.html -------------------------------------------------------------------------------- /doc/zh/grandcentral/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/grandcentral/secrets.md -------------------------------------------------------------------------------- /doc/zh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/index.html -------------------------------------------------------------------------------- /doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/index.md -------------------------------------------------------------------------------- /doc/zh/list/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/features.html -------------------------------------------------------------------------------- /doc/zh/list/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/features.md -------------------------------------------------------------------------------- /doc/zh/list/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/introduction.html -------------------------------------------------------------------------------- /doc/zh/list/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/introduction.md -------------------------------------------------------------------------------- /doc/zh/list/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/secrets.html -------------------------------------------------------------------------------- /doc/zh/list/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/list/secrets.md -------------------------------------------------------------------------------- /doc/zh/overload/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/features.html -------------------------------------------------------------------------------- /doc/zh/overload/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/features.md -------------------------------------------------------------------------------- /doc/zh/overload/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/introduction.html -------------------------------------------------------------------------------- /doc/zh/overload/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/introduction.md -------------------------------------------------------------------------------- /doc/zh/overload/secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/secrets.html -------------------------------------------------------------------------------- /doc/zh/overload/secrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/doc/zh/overload/secrets.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/package.json -------------------------------------------------------------------------------- /samples/async/00-async-ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/samples/async/00-async-ajax.html -------------------------------------------------------------------------------- /samples/async/01-async-chain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/samples/async/01-async-chain.html -------------------------------------------------------------------------------- /samples/async/async-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/samples/async/async-ajax.js -------------------------------------------------------------------------------- /samples/async/fake/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/samples/async/fake/json.js -------------------------------------------------------------------------------- /samples/async/fake/next-json.js: -------------------------------------------------------------------------------- 1 | { 2 | "text": "you got me" 3 | } -------------------------------------------------------------------------------- /src/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/src/async.js -------------------------------------------------------------------------------- /src/central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/src/central.js -------------------------------------------------------------------------------- /src/grandcentral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/src/grandcentral.js -------------------------------------------------------------------------------- /src/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/src/list.js -------------------------------------------------------------------------------- /src/overload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/src/overload.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/index.html -------------------------------------------------------------------------------- /test/javascripts/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/async.js -------------------------------------------------------------------------------- /test/javascripts/central.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/central.js -------------------------------------------------------------------------------- /test/javascripts/grandcentral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/grandcentral.js -------------------------------------------------------------------------------- /test/javascripts/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/list.js -------------------------------------------------------------------------------- /test/javascripts/overload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/overload.js -------------------------------------------------------------------------------- /test/javascripts/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/javascripts/qunit.js -------------------------------------------------------------------------------- /test/stylesheets/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatChen/jsHelpers/HEAD/test/stylesheets/qunit.css --------------------------------------------------------------------------------