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: "ls swap"
992 results
1,788 files checked
1,071.6 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 / Express Session / Node Modules / Cookie Signature
Node_Modules/express-session/node_modules/cookie-signature/Readme.md
...'tobiiscool'); cookie.unsign(val, 'tobiiscool').should.equal('hello'); cookie.unsign(val, 'luna').should.be.false; ``` ## License (The MIT License) Copyright (c) 2012 LearnBoost <tj@learnboost.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation...
Related Match
Node Modules / Encodeurl
Node_Modules/encodeurl/README.md
...Identifier (URI): Generic Syntax][rfc-3986] - [WHATWG URL Living Standard][whatwg-url] [rfc-3986]: https://tools.ietf.org/html/rfc3986 [whatwg-url]: https://url.spec.whatwg.org/ ## License [MIT](LICENSE)
Related Match
Node Modules / Gopd
Node_Modules/gopd/README.md
...l(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://versionbadg.es/ljharb/gopd.svg [deps-svg]: https://david-dm.org/ljharb/gopd.sv...
Related Match
Node Modules / Bcryptjs / Dist
Node_Modules/bcryptjs/dist/README.md
...mpiler. * **[bcrypt.min.js.gz](https://github.com/dcodeIO/bcrypt.js/blob/master/dist/bcrypt.min.js.gz)** has also been gzipped using `-9`.
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
Related Match
MyWebsite / Node Modules / @socket.io / Component Emitter
MyWebsite/Node_Modules/@socket.io/component-emitter/Readme.md
...ings. ## Installation ``` $ npm i @socket.io/component-emitter ``` ## API ### Emitter(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 e...
Related Match
MyWebsite / Node Modules / Buffer From
MyWebsite/Node_Modules/buffer-from/readme.md
...string `string`. If provided, the `encoding` parameter identifies the character encoding of `string`. ## See also - [buffer-alloc](https://github.com/LinusU/buffer-alloc) A ponyfill for `Buffer.alloc` - [buffer-alloc-unsafe](https://github.com/LinusU/buffer-alloc-unsafe) A ponyfill for `Buffer.allocUnsafe`
Related Match
MyWebsite / Node Modules / Safer Buffer
MyWebsite/Node_Modules/safer-buffer/Readme.md
...guns, 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 / Axios / Lib / Helpers
MyWebsite/Node_Modules/axios/lib/helpers/README.md
...own and consumed by other modules or apps. Some examples of generic modules are things like: - Browser polyfills - Managing cookies - Parsing HTTP headers
Related Match
MyWebsite / Node Modules / Mime
MyWebsite/Node_Modules/mime/README.md
....lookup('htm'); // => 'text/html' ``` ### mime.default_type Sets the mime type returned when `mime.lookup` fails to find the extension searched for. (Default is `application/octet-stream`.) ### mime.extension(type) Get the default extension for `type` ```js mime.extension('text/html'); // => 'html' mime.extension('appl...
Related Match
MyWebsite / Node Modules / Isarray
MyWebsite/Node_Modules/isarray/README.md
...``js var isArray = require('isarray'); console.log(isArray([])); // => true console.log(isArray({})); // => false ``` ## Installation With [npm](http://npmjs.org) do ```bash $ npm install isarray ``` Then bundle for the browser with [browserify](https://github.com/substack/browserify). With [component](http://component...
Related Match
MyWebsite / Node Modules / Setprototypeof
MyWebsite/Node_Modules/setprototypeof/README.md
...) var obj = {} setPrototypeOf(obj, { foo: function () { return 'bar' } }) obj.foo() // bar ``` TypeScript is also supported: ```typescript import setPrototypeOf from 'setprototypeof' ```