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: "New Arrivals"
469 results
1,788 files checked
1,003.1 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 / Delayed Stream
Node_Modules/delayed-stream/Readme.md
...ce.pause()`, this feature is enabled by default. ## API ### DelayedStream.create(source, [options]) Returns a new `delayedStream`. Available options are: * `pauseStream` * `maxDataSize` The description for those properties can be found below. ### delayedStream.source The `source` stream managed by this object. This is...
Related Match
Node Modules / Multer
Node_Modules/multer/README.md
...ept the file pass `true`, like so: cb(null, true) // You can always pass an error if something goes wrong: cb(new Error('I don\'t have a clue!')) } ``` ## Error handling When encountering an error, Multer will delegate the error to Express. You can display a nice error page using [the standard express way](http://expre...
Related Match
Node Modules / Mime Types
Node_Modules/mime-types/README.md
...` simply returns `false`, so do `var type = mime.lookup('unrecognized') || 'application/octet-stream'`. - No `new Mime()` business, so you could do `var lookup = require('mime-types').lookup`. - No `.define()` functionality - Bug fixes for `.lookup(path)` Otherwise, the API is compatible with `mime` 1.x. ## Install Thi...
Related Match
Node Modules / Safer Buffer
Node_Modules/safer-buffer/Readme.md
...fill 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 / Mpath
Node_Modules/mpath/README.md
...Setting arrays By default, setting a property within an array to another array results in each element of the new array being set to the item in the destination array at the matching index. An example is helpful. ```js var obj = { comments: [ { title: 'funny' }, { title: 'exciting!' } ] } mpath.set('comments.title', ['...
Related Match
Node Modules / Axios / Lib / Adapters
Node_Modules/axios/lib/adapters/README.md
...ceptors have already run // Make the request using config provided // Upon response settle the Promise return new Promise(function(resolve, reject) { var response = { data: responseData, status: request.status, statusText: request.statusText, headers: responseHeaders, config: config, request: request }; settle(resolve,...
Related Match
Node Modules / Iconv Lite
Node_Modules/iconv-lite/README.md
...l Node basic primitives will understand iconv-lite encodings. iconv.extendNodeEncodings(); // Examples: buf = new Buffer(str, 'win1251'); buf.write(str, 'gbk'); str = buf.toString('latin1'); assert(Buffer.isEncoding('iso-8859-15')); Buffer.byteLength(str, 'us-ascii'); http.createServer(function(req, res) { req.setEncod...
Related Match
Node Modules / Whatwg Url
Node_Modules/whatwg-url/README.md
...se [origin is left unspecified](https://url.spec.whatwg.org/#concept-url-origin), whatwg-url chooses to use a new opaque origin (which serializes to `"null"`). whatwg-url does not yet implement any encoding handling beyond UTF-8. That is, the _encoding override_ parameter does not exist in our API. ## API ### The `URL`...
Related Match
Node Modules / Xtend
Node_Modules/xtend/README.md
...the right-most property takes precedence. ## Examples ```js var extend = require("xtend") // extend returns a new object. Does not mutate arguments var combination = extend({ a: "a", b: "c" }, { b: "b" }) // { a: "a", b: "b" } ``` ## Stability status: Locked ## MIT Licensed [3]: http://ci.testling.com/Raynos/xtend.png...
Related Match
Node Modules / Mime Db
Node_Modules/mime-db/README.md
..._not acceptable_. To update the build, run `npm run build`. ### Adding Custom Media Types The best way to get new media types included in this library is to register them with the IANA. The community registration procedure is outlined in [RFC 6838 section 5](http://tools.ietf.org/html/rfc6838#section-5). Types register...
Related Match
Node Modules / Accepts
Node_Modules/accepts/README.md
...: ```sh $ npm install accepts ``` ## API ```js var accepts = require('accepts') ``` ### accepts(req) Create a new `Accepts` object for the given `req`. #### .charset(charsets) Return the first accepted charset. If nothing in `charsets` is accepted, then `false` is returned. #### .charsets() Return the charsets that the...
Related Match
Node Modules / Nodemailer
Node_Modules/nodemailer/README.md
...to use TLS if the server supports it. - Older Node versions do not fully support the certificate chain of the newest Let's Encrypt certificates. Either set [tls.rejectUnauthorized](https://nodejs.org/dist/latest-v16.x/docs/api/tls.html#tlsconnectoptions-callback) to `false` to skip chain verification or upgrade your No...