Removed GopherJS, basic frontend completed, need backend changes for

torrent storage
This commit is contained in:
2017-11-30 18:12:11 -05:00
parent 67fdef16b1
commit e98ad2cc88
69321 changed files with 5498914 additions and 337 deletions

View File

@@ -0,0 +1,7 @@
'use strict';
module.exports = typeof setImmediate === 'function' ? setImmediate :
function setImmediate() {
var args = [].slice.apply(arguments);
args.splice(1, 0, 0);
setTimeout.apply(null, args);
};

View File

@@ -0,0 +1,69 @@
{
"_args": [
[
"set-immediate-shim@1.0.1",
"C:\\Users\\deranjer\\GoglandProjects\\torrent-project\\torrent-project"
]
],
"_from": "set-immediate-shim@1.0.1",
"_id": "set-immediate-shim@1.0.1",
"_inBundle": false,
"_integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
"_location": "/react-scripts/set-immediate-shim",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "set-immediate-shim@1.0.1",
"name": "set-immediate-shim",
"escapedName": "set-immediate-shim",
"rawSpec": "1.0.1",
"saveSpec": null,
"fetchSpec": "1.0.1"
},
"_requiredBy": [
"/react-scripts/readdirp"
],
"_resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
"_spec": "1.0.1",
"_where": "C:\\Users\\deranjer\\GoglandProjects\\torrent-project\\torrent-project",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bugs": {
"url": "https://github.com/sindresorhus/set-immediate-shim/issues"
},
"description": "Simple setImmediate shim",
"devDependencies": {
"ava": "0.0.4",
"require-uncached": "^1.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/sindresorhus/set-immediate-shim#readme",
"keywords": [
"setImmediate",
"immediate",
"setTimeout",
"timeout",
"shim",
"polyfill",
"ponyfill"
],
"license": "MIT",
"name": "set-immediate-shim",
"repository": {
"type": "git",
"url": "git+https://github.com/sindresorhus/set-immediate-shim.git"
},
"scripts": {
"test": "node test.js"
},
"version": "1.0.1"
}

View File

@@ -0,0 +1,31 @@
# set-immediate-shim [![Build Status](https://travis-ci.org/sindresorhus/set-immediate-shim.svg?branch=master)](https://travis-ci.org/sindresorhus/set-immediate-shim)
> Simple [`setImmediate`](https://developer.mozilla.org/en-US/docs/Web/API/Window.setImmediate) shim
## Install
```
$ npm install --save set-immediate-shim
```
## Usage
```js
var setImmediateShim = require('set-immediate-shim');
setImmediateShim(function () {
console.log('2');
});
console.log('1');
//=> 1
//=> 2
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)