Prettier fixes
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
var tape = require("tape")
|
||||
var tape = require("tape");
|
||||
|
||||
var noop = require("../../../lib/util/noop")
|
||||
var noop = require("../../../lib/util/noop");
|
||||
|
||||
tape("test noop function", function(t) {
|
||||
t.equal(typeof noop, "function", "noop is a function")
|
||||
t.equal(noop(), undefined, "noop() returns nothing")
|
||||
t.end()
|
||||
})
|
||||
t.equal(typeof noop, "function", "noop is a function");
|
||||
t.equal(noop(), undefined, "noop() returns nothing");
|
||||
t.end();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user