summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/spdx-exceptions/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/spdx-exceptions/README.md')
-rw-r--r--deps/npm/node_modules/spdx-exceptions/README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/deps/npm/node_modules/spdx-exceptions/README.md b/deps/npm/node_modules/spdx-exceptions/README.md
new file mode 100644
index 0000000000..ef377325ee
--- /dev/null
+++ b/deps/npm/node_modules/spdx-exceptions/README.md
@@ -0,0 +1,13 @@
+```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))
+```