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

none.js « completion « utils « lib « test « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70488be07ec159c8198d5f12f7d1ae204ae07677 (plain)
1
2
3
4
5
6
const t = require('tap')
const none = require('../../../../lib/utils/completion/none.js')
none({any: 'thing'}, (er, res) => {
  t.equal(er, null)
  t.strictSame(res, [])
})