Site Search

Search LifeStyle Racing

Search public page files, titles, headings, and visible text with stronger weighting for exact matches, filenames, headings, sections, and motorsport-related synonyms.

Query: "Usage" 195 results 1,788 files checked 729.9 ms
Best for static page content. Product database search, account-only data, and forum content would need an additional database or API-backed layer later if you want those included too.
Complete Match MyWebsite / Node Modules / Buffer From MyWebsite/Node_Modules/buffer-from/readme.md

Readme

...r.from`, uses native implementation if available. ## Installation ```sh npm install --save buffer-from ``` ## Usage ```js const bufferFrom = require('buffer-from') console.log(bufferFrom([1, 2, 3, 4])) //=> const arr = new Uint8Array([1, 2, 3, 4]) console.log(bufferFrom(arr.buffer, 1, 2)) //=> console.log(bufferFrom('t...

Complete Match MyWebsite / Node Modules / Delayed Stream MyWebsite/Node_Modules/delayed-stream/Readme.md

Readme

...from a stream until you are ready to handle them. ## Installation ``` bash npm install delayed-stream ``` ## Usage The following example shows how to write a http echo server that delays its response by 1000 ms. ``` javascript var DelayedStream = require('delayed-stream'); var http = require('http'); http.createServer...

Complete Match MyWebsite / Node Modules / Append Field MyWebsite/Node_Modules/append-field/README.md

README

...bles from the prototype (e.g. `hasOwnProperty`). ## Installation ```sh npm install --save append-field ``` ## Usage ```javascript var appendField = require('append-field') var obj = Object.create(null) appendField(obj, 'pets[0][species]', 'Dahut') appendField(obj, 'pets[0][name]', 'Hypatia') appendField(obj, 'pets[1][s...

Complete Match MyWebsite / Node Modules / Array Flatten MyWebsite/Node_Modules/array-flatten/README.md

README

...o a single flat array. Accepts an optional depth. ## Installation ``` npm install array-flatten --save ``` ## Usage ```javascript var flatten = require('array-flatten') flatten([1, [2, [3, [4, [5], 6], 7], 8], 9]) //=> [1, 2, 3, 4, 5, 6, 7, 8, 9] flatten([1, [2, [3, [4, [5], 6], 7], 8], 9], 2) //=> [1, 2, 3, [4, [5], 6...

Complete Match MyWebsite / Node Modules / Uid Safe MyWebsite/Node_Modules/uid-safe/README.md

README

...e]][coveralls-url] URL and cookie safe UIDs Create cryptographically secure UIDs safe for both cookie and URL usage. This is in contrast to modules such as [rand-token](https://www.npmjs.com/package/rand-token) and [uid2](https://www.npmjs.com/package/uid2) whose UIDs are actually skewed due to the use of `%` and unnec...

Complete Match MyWebsite / Node Modules / Path To Regexp MyWebsite/Node_Modules/path-to-regexp/Readme.md

Readme

...s `/user/:name` into a regular expression. **Note:** This is a legacy branch. You should upgrade to `1.x`. ## Usage ```javascript var pathToRegexp = require('path-to-regexp'); ``` ### pathToRegexp(path, keys, options) - **path** A string in the express format, an array of such strings, or a regular expression - **keys*...

Complete Match MyWebsite / Node Modules / Uuid MyWebsite/Node_Modules/uuid/README.md

README

...4 UUIDS, however the other versions are supported. Type `uuid --help` for details: ```shell $ npx uuid --help Usage: uuid uuid v1 uuid v3 uuid v4 uuid v5 uuid v7 uuid --help Note: may be "URL" or "DNS" to use the corresponding UUIDs defined by RFC9562 ``` ## ECMAScript Modules This library comes with [ECMAScript Module...

Complete Match MyWebsite / Node Modules / @mongodb Js / Saslprep MyWebsite/Node_Modules/@mongodb-js/saslprep/readme.md

Readme

...onality._ Stringprep Profile for User Names and Passwords, [rfc4013](https://tools.ietf.org/html/rfc4013) ### Usage ```js const saslprep = require('@mongodb-js/saslprep'); saslprep('password\u00AD'); // password saslprep('password\u0007'); // Error: prohibited character ``` ### API ##### `saslprep(input: String, opts:...

Complete Match MyWebsite / Node Modules / Call Bind MyWebsite/Node_Modules/call-bind/README.md

README

...package-url] Robustly `.call.bind()` a function. ## Getting started ```sh npm install --save call-bind ``` ## Usage/Examples ```js const assert = require('assert'); const callBind = require('call-bind'); const callBound = require('call-bind/callBound'); function f(a, b) { assert.equal(this, 1); assert.equal(a, 2); asse...

Complete Match MyWebsite / Node Modules / Socket.io Adapter MyWebsite/Node_Modules/socket.io-adapter/Readme.md

Readme

...-------- | | 1.x.x | 1.x.x / 2.x.x | | 2.x.x | 3.x.x | ## How to use This module is not intended for end-user usage, but can be used as an interface to inherit from other adapters you might want to build. As an example of an adapter that builds on top of this, please take a look at [socket.io-redis](https://github.com/...

Complete Match MyWebsite / Node Modules / Isarray MyWebsite/Node_Modules/isarray/README.md

README

...support](https://ci.testling.com/juliangruber/isarray.png) ](https://ci.testling.com/juliangruber/isarray) ## Usage ```js var isArray = require('isarray'); console.log(isArray([])); // => true console.log(isArray({})); // => false ``` ## Installation With [npm](http://npmjs.org) do ```bash $ npm install isarray ``` The...

Complete Match MyWebsite / Node Modules / Inherits MyWebsite/Node_Modules/inherits/README.md

README

...require('util').inherits` for any code that has chances to be used not only in node.js but in browser too. ## usage ```js var inherits = require('inherits'); // then use exactly as the standard one ``` ## note on version ~1.0 Version ~1.0 had completely different motivation and is not compatible neither with 2.0 nor wi...