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: "Terms of Use - Lifestyle Racing"
1,325 results
1,788 files checked
1,457.0 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.
Related Match
Node Modules / On Headers
Node_Modules/on-headers/README.md
...'on-headers') http .createServer(onRequest) .listen(3000) function addPoweredBy () { // set if not set by end of request if (!this.getHeader('X-Powered-By')) { this.setHeader('X-Powered-By', 'Node.js') } } function onRequest (req, res) { onHeaders(res, addPoweredBy) res.setHeader('Content-Type', 'text/plain') res.end('...
Related Match
Node Modules / Array Flatten
Node_Modules/array-flatten/README.md
...uild status][travis-image]][travis-url] [![Test coverage][coveralls-image]][coveralls-url] > Flatten an array of nested arrays into 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, [...
Related Match
Node Modules / Process Nextick Args
Node_Modules/process-nextick-args/readme.md
...a = require('process-nextick-args'); pna.nextTick(function (a, b, c) { console.log(a, b, c); }, 'step', 3, 'profit'); ```
Related Match
Node Modules / Crypto
Node_Modules/crypto/README.md
# Deprecated Package This package is no longer supported and has been deprecated. To avoid malicious use, npm is hanging on to the package name. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in. Please contact support@npmjs.com if you have questions about this...
Related Match
Node Modules / Side Channel
Node_Modules/side-channel/README.md
# side-channel Store information about any JS value in a side channel. Uses WeakMap if available.
Related Match
Node Modules / Safer Buffer
Node_Modules/safer-buffer/Readme.md
...re_template.md Modern Buffer API polyfill without footguns, working on Node.js from 0.8 to current. ## How to use? First, port all `Buffer()` and `new Buffer()` calls to `Buffer.alloc()` and `Buffer.from()` API. Then, to achieve compatibility with outdated Node.js versions (`
Related Match
Node Modules / Es Errors
Node_Modules/es-errors/README.md
...wnloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] A simple cache for a few of the JS Error constructors. ## Example ```js const assert = require('assert'); const Base = require('es-errors'); const Eval = require('es-errors/eval'); const Range = require('es-errors/range'); const Ref =...
Related Match
Node Modules / Xtend
Node_Modules/xtend/README.md
...es) Extend like a boss xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes precedence. ## Examples ```js var extend = require("xtend") // extend returns a new object. Does...
Related Match
Node Modules / Escape Html
Node_Modules/escape-html/Readme.md
# escape-html Escape string for use in HTML ## Example ```js var escape = require('escape-html'); var html = escape('foo & bar'); // -> foo & bar ``` ## Benchmark ``` $ npm run-script bench > escape-html@1.0.3 bench nodejs-escape-html > node benchmark/index.js http_parser@1.0 node@0.10.33 v8@3.14.5.9 ares@1.9.0-DEV uv@...
Related Match
Node Modules / Proxy From Env
Node_Modules/proxy-from-env/README.md
...xample, if there is a proxy server at 10.0.0.1:1234, then setting the // // http_proxy environment variable causes the request to go through a proxy. // process.env.http_proxy = 'http://10.0.0.1:1234'; // // // But if the host to be proxied is listed in NO_PROXY, then the request is // // not proxied (but a direct requ...
Related Match
Node Modules / Define Data Property
Node_Modules/define-data-property/README.md
...assignment in an engine without descriptors. The three `non*` argument can also be passed `null`, which will use the existing state if available. The `loose` argument will mean that if you attempt to set a non-normal data property, in an environment without descriptor support, it will fall back to normal assignment. #...
Related Match
MyWebsite / Node Modules / Base64id
MyWebsite/Node_Modules/base64id/README.md
base64id ======== Node.js module that generates a base64 id. Uses crypto.randomBytes when available, falls back to unsafe methods for node.js