aboutsummaryrefslogtreecommitdiff
path: root/node_modules/spdx-correct/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/spdx-correct/README.md')
-rw-r--r--node_modules/spdx-correct/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/spdx-correct/README.md b/node_modules/spdx-correct/README.md
new file mode 100644
index 000000000..4289e5cd8
--- /dev/null
+++ b/node_modules/spdx-correct/README.md
@@ -0,0 +1,10 @@
+```javascript
+var correct = require('spdx-correct');
+var assert = require('assert');
+
+assert.equal(correct('mit'), 'MIT')
+
+assert.equal(correct('Apache 2'), 'Apache-2.0')
+
+assert(correct('No idea what license') === null)
+```