conan
Version:
Barbarically simple framework for building deployment systems.
30 lines (13 loc) • 382 B
JavaScript
function namedSomething() {
}
console.log("1:", namedSomething.name); // namedSomething;
var blah = 1;
var namedSomethingElse = function () {
}
console.log("2:", namedSomethingElse.name); // undefined;
() => {
}.bind(someOtherContext);
fs.readFile(path, namedSomething);
fs.readFile(path, namedSomethingElse);
fs.readFile(path, function () {});
fs.readFile(path, );