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

README.md « spdx-exceptions « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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))
```