├── .gitattributes ├── .gitignore ├── .npmrc ├── gulpfile.js ├── jquery-3.7.1.screwed.js ├── license.txt ├── package.json ├── readme.md └── test.html /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jquery-3.7.1.screwed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/jquery-3.7.1.screwed.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/readme.md -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fasttime/jquery-screwed/HEAD/test.html --------------------------------------------------------------------------------