aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md b/vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md
deleted file mode 100644
index 4ec864fa..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/set-immediate-shim/readme.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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)