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 848.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 / Concat Stream Node_Modules/concat-stream/readme.md

Readme

...[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 Node Modules / Sparse Bitfield Node_Modules/sparse-bitfield/README.md

README

...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...

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

README

...s. This will append the header if not already listed, otherwise leaves it listed in the current location. The new header string is returned. ```js // Get header string appending "Origin" to "Accept, User-Agent" vary.append('Accept, User-Agent', 'Origin') ``` ## Examples ### Updating the Vary header when content is base...

Related Match Node Modules / Combined Stream Node_Modules/combined-stream/Readme.md

Readme

...dStream.pipe(fs.createWriteStream('combined.txt')); ``` ## API ### CombinedStream.create([options]) Returns a new combined stream object. Available options are: * `maxDataSize` * `pauseStreams` The effect of those options is described below. ### combinedStream.pauseStreams = `true` Whether to apply back pressure to the...

Related Match Node Modules / Toidentifier Node_Modules/toidentifier/README.md

README

...ifier(string) Given a string as the argument, it will be transformed according to the following rules and the new string will be returned: 1. Split into words separated by space characters (`0x20`). 2. Upper case the first character of each word. 3. Join the words together with no separator. 4. Remove all non-word (`[0...

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

Readme

...totype. As an `Emitter` instance: ```js import { Emitter } from '@socket.io/component-emitter'; var emitter = new Emitter; emitter.emit('something'); ``` As a mixin: ```js import { Emitter } from '@socket.io/component-emitter'; var user = { name: 'tobi' }; Emitter(user); user.emit('im a user'); ``` As a prototype mixin...

Related Match MyWebsite / Node Modules / Debug MyWebsite/Node_Modules/debug/README.md

README

...= (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just...

Related Match MyWebsite / Node Modules / Memory Pager MyWebsite/Node_Modules/memory-pager/README.md

README

.../ 10240 console.log(page.buffer) // a blank 1kb buffer ``` ## API #### `var pages = pager(pageSize)` Create a new pager. `pageSize` defaults to `1024`. #### `var page = pages.get(pageNumber, [noAllocate])` Get a page. The page will be allocated at first access. Optionally you can set the `noAllocate` flag which will ma...

Related Match MyWebsite / Node Modules / Mongodb Connection String Url MyWebsite/Node_Modules/mongodb-connection-string-url/README.md

README

...s, based on the WhatWG URL API ```js import ConnectionString from 'mongodb-connection-string-url'; const cs = new ConnectionString('mongodb://localhost'); cs.searchParams.set('readPreference', 'secondary'); console.log(cs.href); // 'mongodb://localhost/?readPreference=secondary' ``` ## Deviations from the WhatWG URL pa...

Related Match MyWebsite / Node Modules / Set Function Length MyWebsite/Node_Modules/set-function-length/README.md

README

...badge][npm-badge-png]][package-url] Set a function’s length. Arguments: - `fn`: the function - `length`: the new length. Must be an integer between 0 and 2**32. - `loose`: Optional. If true, and the length fails to be set, do not throw. Default false. Returns `fn`. ## Usage ```javascript var setFunctionLength = requir...

Related Match MyWebsite / Node Modules / Delayed Stream MyWebsite/Node_Modules/delayed-stream/Readme.md

Readme

...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 MyWebsite / Node Modules / Multer MyWebsite/Node_Modules/multer/README.md

README

...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...