SILENT KILLERPanel

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


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.38
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

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

NameTypeSizeLast ModifiedActions
.npmignore File 13 bytes March 10 2021 14:36:39.
LICENSE File 1079 bytes March 10 2021 14:36:39.
README.md File 827 bytes March 10 2021 14:36:39.
index.js File 277 bytes March 10 2021 14:36:39.
package.json File 1377 bytes March 10 2021 14:36:39.
test.js File 1050 bytes March 10 2021 14:36:39.

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

# defaults

A simple one level options merge utility

## install

`npm install defaults`

## use

```javascript

var defaults = require('defaults');

var handle = function(options, fn) {
  options = defaults(options, {
    timeout: 100
  });

  setTimeout(function() {
    fn(options);
  }, options.timeout);
}

handle({ timeout: 1000 }, function() {
  // we're here 1000 ms later
});

handle({ timeout: 10000 }, function() {
  // we're here 10s later
});

```

## summary

this module exports a function that takes 2 arguments: `options` and `defaults`.  When called, it overrides all of `undefined` properties in `options` with the clones of properties defined in `defaults`

Sidecases: if called with a falsy `options` value, options will be initialized to a new object before being merged onto.

## license

[MIT](LICENSE)

SILENT KILLER Tool