Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/spdx-exceptions/README.md')
-rw-r--r--node_modules/spdx-exceptions/README.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/spdx-exceptions/README.md b/node_modules/spdx-exceptions/README.md
deleted file mode 100644
index ef377325e..000000000
--- a/node_modules/spdx-exceptions/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-```javascript
-var assert = require('assert')
-var spdxExceptions = require('spdx-exceptions')
-
-assert(Array.isArray(spdxExceptions))
-
-assert(spdxExceptions.length > 0)
-
-function isString(x) {
- return typeof x === 'string' }
-
-assert(spdxExceptions.every(isString))
-```