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,067.4 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
MyWebsite / Node Modules / Mime Types
MyWebsite/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
MyWebsite / Node Modules / Safer Buffer
MyWebsite/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
MyWebsite / Node Modules / Mpath
MyWebsite/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
MyWebsite / Node Modules / Axios / Lib / Adapters
MyWebsite/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
MyWebsite / Node Modules / Iconv Lite
MyWebsite/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
MyWebsite / Node Modules / Whatwg Url
MyWebsite/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
MyWebsite / Node Modules / Xtend
MyWebsite/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
MyWebsite / Node Modules / Mime Db
MyWebsite/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
MyWebsite / Node Modules / Accepts
MyWebsite/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
MyWebsite / Node Modules / Nodemailer
MyWebsite/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...
Related Match
MyWebsite / Node Modules / Concat Stream
MyWebsite/Node_Modules/concat-stream/readme.md
...[1,2,3,4,5,6] in the above callback ``` #### Uint8Arrays ```js var write = concat(function(data) {}) var a = new Uint8Array(3) a[0] = 97; a[1] = 98; a[2] = 99 write.write(a) write.write('!') write.end(Buffer.from('!!1')) ``` See `test/` for more examples # methods ```js var concat = require('concat-stream') ``` ## var...
Related Match
MyWebsite / Node Modules / Sparse Bitfield
MyWebsite/Node_Modules/sparse-bitfield/README.md
...cond will be used to store the 1.000.000.000.000th bit. ## API #### `var bits = bitfield([options])` Create a new bitfield. Options include ``` js { pageSize: 1024, // how big should the partial buffers be buffer: anExistingBitfield, trackUpdates: false // track when pages are being updated in the pager } ``` #### `bit...