SILENT KILLERPanel

Current Path: > > usr > lib > node_modules > npm > > node_modules > wrappy


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.9
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //usr/lib/node_modules/npm//node_modules/wrappy

NameTypeSizeLast ModifiedActions
LICENSE File 765 bytes March 10 2021 14:36:38.
README.md File 685 bytes March 10 2021 14:36:38.
package.json File 1346 bytes March 10 2021 14:36:38.
wrappy.js File 905 bytes March 10 2021 14:36:38.

Reading File: //usr/lib/node_modules/npm//node_modules/wrappy/README.md

# wrappy

Callback wrapping utility

## USAGE

```javascript
var wrappy = require("wrappy")

// var wrapper = wrappy(wrapperFunction)

// make sure a cb is called only once
// See also: http://npm.im/once for this specific use case
var once = wrappy(function (cb) {
  var called = false
  return function () {
    if (called) return
    called = true
    return cb.apply(this, arguments)
  }
})

function printBoo () {
  console.log('boo')
}
// has some rando property
printBoo.iAmBooPrinter = true

var onlyPrintOnce = once(printBoo)

onlyPrintOnce() // prints 'boo'
onlyPrintOnce() // does nothing

// random property is retained!
assert.equal(onlyPrintOnce.iAmBooPrinter, true)
```

SILENT KILLER Tool