Skip to content

Commit 5947b1a

Browse files
committed
remove array-tools
1 parent 90abac8 commit 5947b1a

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

lib/transform.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use strict'
22
const o = require('object-tools')
3-
const a = require('array-tools')
43
const testValue = require('test-value')
54
const where = require('filter-where')
65
const arrayify = require('array-back')
@@ -19,9 +18,7 @@ function transform (data) {
1918
data = fixES6ConstructorMemberLongnames(data)
2019

2120
/* remove undocumented, package and file doclets */
22-
let json = data.filter(i => {
23-
return !i.undocumented && !/package|file/.test(i.kind)
24-
})
21+
let json = data.filter(i => !i.undocumented && !/package|file/.test(i.kind))
2522

2623
json = json.map(setIsExportedFlag)
2724
json = json.map(setCodename)

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
},
2424
"dependencies": {
2525
"array-back": "^1.0.2",
26-
"array-tools": "^2",
2726
"core-js": "^2.1.0",
2827
"feature-detect-es6": "^1.2.0",
2928
"filter-where": "^1.0.1",

0 commit comments

Comments
 (0)