summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/spdx-exceptions/README.md
blob: ef377325ee1e742232225754b98fd318e7b38f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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))
```