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
779.3 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
Node Modules / Uid Safe
Node_Modules/uid-safe/README.md
...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
Node Modules / Path To Regexp
Node_Modules/path-to-regexp/Readme.md
...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
Node Modules / Uuid
Node_Modules/uuid/README.md
...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
Node Modules / @mongodb Js / Saslprep
Node_Modules/@mongodb-js/saslprep/readme.md
...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
Node Modules / Call Bind
Node_Modules/call-bind/README.md
...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
Node Modules / Socket.io Adapter
Node_Modules/socket.io-adapter/Readme.md
...-------- | | 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
Node Modules / Isarray
Node_Modules/isarray/README.md
...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
Node Modules / Inherits
Node_Modules/inherits/README.md
...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...
Complete Match
Node Modules / Setprototypeof
Node_Modules/setprototypeof/README.md
...ation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8. ## Usage: ``` $ npm install --save setprototypeof ``` ```javascript var setPrototypeOf = require('setprototypeof') var obj = {} setPrototypeOf(obj, { foo: function () { return 'bar' } }) obj.foo() // bar ``` TypeS...
Complete Match
Node Modules / Object Assign
Node_Modules/object-assign/readme.md
...eans, use `Object.assign()` instead of this package. ## Install ``` $ npm install --save object-assign ``` ## Usage ```js const objectAssign = require('object-assign'); objectAssign({foo: 0}, {bar: 1}); //=> {foo: 0, bar: 1} // multiple sources objectAssign({foo: 0}, {bar: 1}, {baz: 2}); //=> {foo: 0, bar: 1, baz: 2} /...
Complete Match
Node Modules / Utils Merge
Node_Modules/utils-merge/README.md
...roperties from a source object into a destination object. ## Install ```bash $ npm install utils-merge ``` ## Usage ```javascript var a = { foo: 'bar' } , b = { bar: 'baz' }; merge(a, b); // => { foo: 'bar', bar: 'baz' } ``` ## License [The MIT License](http://opensource.org/licenses/MIT) Copyright (c) 2013-2017 Jared...
Complete Match
Node Modules / Mime Db
Node_Modules/mime-db/README.md
...he JSON format may change in the future. ``` https://cdn.jsdelivr.net/gh/jshttp/mime-db@master/db.json ``` ## Usage ```js var db = require('mime-db') // grab data on .js files var data = db['application/javascript'] ``` ## Data Structure The JSON file is a map lookup for lowercased mime types. Each mime type has the fo...