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: "Pick up where you left off" 1,255 results 1,788 files checked 1,167.5 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 / Parseurl Node_Modules/parseurl/README.md

README

...The result is the same as `url.parse` in Node.js core. Calling this function multiple times on the same `req` where `req.url` does not change will return a cached parsed object, rather than parsing again. ### parseurl.original(req) Parse the original URL of the given request object and return the result. This works by...

Related Match Node Modules / Axios / Lib / Env Node_Modules/axios/lib/env/README.md

README

# axios // env The `data.js` file is updated automatically when the package version is upgrading. Please do not edit it manually.

Related Match Node Modules / Xtend Node_Modules/xtend/README.md

README

# xtend [![browser support][3]][4] [![locked](http://badges.github.io/stability-badges/dist/locked.svg)](http://github.com/badges/stability-badges) 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 ident...

Related Match Node Modules / Setprototypeof Node_Modules/setprototypeof/README.md

README

....com/standard/standard) A simple cross platform implementation 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: f...

Related Match Node Modules / Methods Node_Modules/methods/README.md

README

...]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] HTTP verbs that Node.js core's HTTP parser supports. This module provides an export that is just like `http.METHODS` from Node.js core, with the following differences: * All method names are lower-cased. * Contains a fallback list of methods for Node.js...

Related Match Node Modules / Accepts Node_Modules/accepts/README.md

README

...IME types or file extensions. Any value that is not a full MIME types is passed to `require('mime-types').lookup`. #### .types() Return the types that the request accepts, in the order of the client's preference (most preferred first). ## Examples ### Simple type negotiation This simple example shows how to use `accept...

Related Match Node Modules / Define Data Property Node_Modules/define-data-property/README.md

README

...gument 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. ## Usage ```javascript var defineDataProperty = require('define-data-property'); var assert = require('assert'); var obj = {}; defineDataProperty(obj, 'key', 'val...

Related Match Node Modules / Gopd Node_Modules/gopd/README.md

README

...uire('gopd'); var assert = require('assert'); if (gOPD) { assert.equal(typeof gOPD, 'function', 'descriptors supported'); // use gOPD like Object.getOwnPropertyDescriptor here } else { assert.ok(!gOPD, 'descriptors not supported'); } ``` [package-url]: https://npmjs.org/package/gopd [npm-version-svg]: https://versionba...

Related Match Node Modules / Vary Node_Modules/vary/README.md

README

...ng appending "Origin" to "Accept, User-Agent" vary.append('Accept, User-Agent', 'Origin') ``` ## Examples ### Updating the Vary header when content is based on it ```js var http = require('http') var vary = require('vary') http.createServer(function onRequest (req, res) { // about to user-agent sniff vary(res, 'User-Ag...

Related Match Node Modules / Destroy Node_Modules/destroy/README.md

README

...ing different APIs and Node.js bugs. ## API ```js var destroy = require('destroy') ``` ### destroy(stream [, suppress]) Destroy the given stream, and optionally suppress any future `error` events. In most cases, this is identical to a simple `stream.destroy()` call. The rules are as follows for a given stream: 1. If th...

Related Match MyWebsite / Node Modules / Util Deprecate MyWebsite/Node_Modules/util-deprecate/README.md

README

util-deprecate ============== ### The Node.js `util.deprecate()` function with browser support In Node.js, this module simply re-exports the `util.deprecate()` function. In the web browser (i.e. via browserify), a browser-specific implementation of the `util.deprecate()` function is used. ## API A `deprecate()` functio...

Related Match MyWebsite / Node Modules / @socket.io / Component Emitter MyWebsite/Node_Modules/@socket.io/component-emitter/Readme.md

Readme

...mitter(obj) The `Emitter` may also be used as a mixin. For example a "plain" object may become an emitter, or you may extend an existing prototype. As an `Emitter` instance: ```js import { Emitter } from '@socket.io/component-emitter'; var emitter = new Emitter; emitter.emit('something'); ``` As a mixin: ```js import {...