code
stringlengths
24
2.07M
docstring
stringlengths
25
85.3k
func_name
stringlengths
1
92
language
stringclasses
1 value
repo
stringlengths
5
64
path
stringlengths
4
172
url
stringlengths
44
218
license
stringclasses
7 values
async function getCLS(url) { const browser = await puppeteer.launch({ args: ['--no-sandbox'], timeout: 10000, }); try { const page = await browser.newPage(); const client = await page.target().createCDPSession(); await client.send('Network.enable'); await client.send('ServiceWorker.enabl...
Get cumulative layout shift for a URL @param {String} url - url to measure @return {Number} - cumulative layout shift
getCLS
javascript
addyosmani/puppeteer-webperf
cumulative-layout-shift.js
https://github.com/addyosmani/puppeteer-webperf/blob/master/cumulative-layout-shift.js
Apache-2.0
async function getLCP(url) { const browser = await puppeteer.launch({ args: ['--no-sandbox'], timeout: 10000, }); try { const page = await browser.newPage(); const client = await page.target().createCDPSession(); await client.send('Network.enable'); await client.send('ServiceWorker.enabl...
Get LCP for a provided URL @param {*} url @return {Number} lcp
getLCP
javascript
addyosmani/puppeteer-webperf
largest-contentful-paint.js
https://github.com/addyosmani/puppeteer-webperf/blob/master/largest-contentful-paint.js
Apache-2.0
async function lighthouseFromPuppeteer(url, options, config = null) { // Launch chrome using chrome-launcher const chrome = await chromeLauncher.launch(options); options.port = chrome.port; // Connect chrome-launcher to puppeteer const resp = await util.promisify(request)(`http://localhost:${options.port}/js...
Perform a Lighthouse run @param {String} url - url The URL to test @param {Object} options - Optional settings for the Lighthouse run @param {Object} [config=null] - Configuration for the Lighthouse run. If not present, the default config is used.
lighthouseFromPuppeteer
javascript
addyosmani/puppeteer-webperf
lighthouse-report.js
https://github.com/addyosmani/puppeteer-webperf/blob/master/lighthouse-report.js
Apache-2.0
constructor (name, cpus) { this.name = name || 'HTTP'; this._watchers = null; this._error = null; this._server = null; this._port = null; this._paused = false; this.cpus = parseInt(cpus) || os.cpus().length; this.children = []; process.on('exit', (code) => { console.log(...
Multi-process HTTP Daemon that resets when files changed (in development) @class
constructor
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
start(port) { this._port = port || 3000; console.log(`[${this.name}.Daemon] Startup: Initializing`); if ((process.env.NODE_ENV || 'development') === 'development') { this.watch('', (changes) => { changes.forEach(change => { console.log(`[${this.name}.Daemon] ${change.event[0].toU...
Starts the Daemon. If all application services fail, will launch a dummy error app on the port provided. @param {Number} port
start
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
idle() { let port = this._port || 3000; this._server = http .createServer((req, res) => { this.error(req, res, this._error); req.connection.destroy(); }) .listen(port); console.log(`[${this.name}.Daemon] Idle: Unable to spawn HTTP Workers, listening on port ${port}`); ...
Daemon failed to load, set it in idle state (accept connections, give dummy response)
idle
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
error(req, res, error) { res.writeHead(500, {'Content-Type': 'text/plain'}); res.end(`Application Error:\n${error.stack}`); }
Daemon failed to load, set it in idle state (accept connections, give dummy response)
error
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
message(data) { if (data.error) { this.logError(data.error); } }
Daemon failed to load, set it in idle state (accept connections, give dummy response)
message
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
exit(child, code) { let index = this.children.indexOf(child); if (index === -1) { return; } this.children.splice(index, 1); if (code === 0) { child = cluster.fork(); this.children.push(child); child.on('message', this.message.bind(this)); child.on('exit', this.exit....
Shut down a child process given a specific exit code. (Reboot if clean shutdown.) @param {child_process} child @param {Number} code Exit status codes
exit
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
logError(error) { this._error = error; this._server = null; console.log(`[${this.name}.Daemon] ${error.name}: ${error.message}`); console.log(error.stack); }
Log an error on the Daemon @param {Error} error
logError
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
unwatch() { clearInterval(this._watchers.interval); this._watchers = null; return true; }
Stops watching a directory tree for changes
unwatch
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
watch (root, onChange) { let cwd = process.cwd(); function watchDir (dirname, watchers) { if (!watchers) { watchers = Object.create(null); watchers.directories = Object.create(null); watchers.interval = null; } let pathname = path.join(cwd, dirname); let fil...
Watches a directory tree for changes @param {string} root Directory tree to watch @param {function} onChange Method to be executed when a change is detected
watch
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
function watchDir (dirname, watchers) { if (!watchers) { watchers = Object.create(null); watchers.directories = Object.create(null); watchers.interval = null; } let pathname = path.join(cwd, dirname); let files = fs.readdirSync(pathname); watchers.directories[d...
Watches a directory tree for changes @param {string} root Directory tree to watch @param {function} onChange Method to be executed when a change is detected
watchDir
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
constructor (cpus) { super('FunctionScript', cpus); }
Watches a directory tree for changes @param {string} root Directory tree to watch @param {function} onChange Method to be executed when a change is detected
constructor
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
constructor (cfg) { super(cfg); process.on('uncaughtException', e => { if (typeof process.send === 'function') { process.send({ error: { name: e.name, message: e.message, stack: e.stack } }); } process.exit(1); }); ...
Watches a directory tree for changes @param {string} root Directory tree to watch @param {function} onChange Method to be executed when a change is detected
constructor
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
listen (port, callback, opts) { super.listen(port, callback, opts); if (typeof process.send === 'function') { process.send({message: 'ready'}); } return this.server; }
Watches a directory tree for changes @param {string} root Directory tree to watch @param {function} onChange Method to be executed when a change is detected
listen
javascript
acode/FunctionScript
lib/daemon.js
https://github.com/acode/FunctionScript/blob/master/lib/daemon.js
MIT
renderComponent = (jsx, renderToDOM) => { if (renderToDOM) { const testDiv = document.createElement('div'); document.body.appendChild(testDiv); return render(jsx, testDiv); } return ReactTestUtils.renderIntoDocument(jsx); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
renderComponent
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
renderComponent = (jsx, renderToDOM) => { if (renderToDOM) { const testDiv = document.createElement('div'); document.body.appendChild(testDiv); return render(jsx, testDiv); } return ReactTestUtils.renderIntoDocument(jsx); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
renderComponent
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
findPaneByOrder = paneString => paneString === 'first' ? findTopPane() : findBottomPane()
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
findPaneByOrder
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
findPaneByOrder = paneString => paneString === 'first' ? findTopPane() : findBottomPane()
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
findPaneByOrder
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertStyles = (componentName, actualStyles, expectedStyles) => { Object.keys(expectedStyles).forEach(prop => { // console.log(`${prop}: '${actualStyles[prop]}',`); if (expectedStyles[prop] && expectedStyles[prop] !== '') { // console.log(`${prop}: '${actualStyles[prop]}',`); expect(actu...
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertStyles
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertStyles = (componentName, actualStyles, expectedStyles) => { Object.keys(expectedStyles).forEach(prop => { // console.log(`${prop}: '${actualStyles[prop]}',`); if (expectedStyles[prop] && expectedStyles[prop] !== '') { // console.log(`${prop}: '${actualStyles[prop]}',`); expect(actu...
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertStyles
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneStyles = (expectedStyles, paneString) => { const pane = findPaneByOrder(paneString); return assertStyles( `${paneString} Pane`, findDOMNode(pane).style, expectedStyles ); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneStyles
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneStyles = (expectedStyles, paneString) => { const pane = findPaneByOrder(paneString); return assertStyles( `${paneString} Pane`, findDOMNode(pane).style, expectedStyles ); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneStyles
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertCallbacks = ( expectedDragStartedCallback, expectedDragFinishedCallback ) => { expect(expectedDragStartedCallback).to.have.been.called(); expect(expectedDragFinishedCallback).to.have.been.called(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertCallbacks
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertCallbacks = ( expectedDragStartedCallback, expectedDragFinishedCallback ) => { expect(expectedDragStartedCallback).to.have.been.called(); expect(expectedDragFinishedCallback).to.have.been.called(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertCallbacks
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
getResizerPosition = () => { const resizerNode = findDOMNode(findResizer()[0]); return resizerNode.getBoundingClientRect(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
getResizerPosition
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
getResizerPosition = () => { const resizerNode = findDOMNode(findResizer()[0]); return resizerNode.getBoundingClientRect(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
getResizerPosition
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
calculateMouseMove = mousePositionDifference => { const resizerPosition = getResizerPosition(); const mouseMove = { start: { clientX: resizerPosition.left, clientY: resizerPosition.top, }, end: { clientX: resizerPosition.left, clientY: resizerPosition.top, ...
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
calculateMouseMove
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
calculateMouseMove = mousePositionDifference => { const resizerPosition = getResizerPosition(); const mouseMove = { start: { clientX: resizerPosition.left, clientY: resizerPosition.top, }, end: { clientX: resizerPosition.left, clientY: resizerPosition.top, ...
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
calculateMouseMove
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
simulateDragAndDrop = mousePositionDifference => { const mouseMove = calculateMouseMove(mousePositionDifference); component.onMouseDown(mouseMove.start); component.onMouseMove(mouseMove.end); component.onMouseUp(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
simulateDragAndDrop
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
simulateDragAndDrop = mousePositionDifference => { const mouseMove = calculateMouseMove(mousePositionDifference); component.onMouseDown(mouseMove.start); component.onMouseMove(mouseMove.end); component.onMouseUp(); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
simulateDragAndDrop
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
changeSize = (newSize, comp) => { const parent = ReactTestUtils.findRenderedComponentWithType( splitPane, comp ); parent.setState({ size: newSize }); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
changeSize
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
changeSize = (newSize, comp) => { const parent = ReactTestUtils.findRenderedComponentWithType( splitPane, comp ); parent.setState({ size: newSize }); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
changeSize
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertClass = (comp, expectedClassName) => { expect(findDOMNode(comp).className).to.contain( expectedClassName, 'Incorrect className' ); return this; }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertClass
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertClass = (comp, expectedClassName) => { expect(findDOMNode(comp).className).to.contain( expectedClassName, 'Incorrect className' ); return this; }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertClass
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertOrientation(expectedOrientation) { expect(findDOMNode(component).className).to.contain( expectedOrientation, 'Incorrect orientation' ); return this; }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertOrientation
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertSplitPaneClass(expectedClassName) { assertClass(component, expectedClassName); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertSplitPaneClass
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneClasses(expectedTopPaneClass, expectedBottomPaneClass) { assertClass(findTopPane(), expectedTopPaneClass); assertClass(findBottomPane(), expectedBottomPaneClass); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneClasses
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertTopPaneClasses(expectedTopPaneClass) { assertClass(findTopPane(), expectedTopPaneClass); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertTopPaneClasses
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertBottomPaneClasses(expectedBottomPaneClass) { assertClass(findBottomPane(), expectedBottomPaneClass); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertBottomPaneClasses
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneContents(expectedContents) { const panes = findPanes(); const values = panes.map(pane => findDOMNode(pane).textContent); expect(values).to.eql(expectedContents, 'Incorrect contents for Pane'); return this; }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneContents
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertContainsResizer() { expect(findResizer().length).to.equal( 1, 'Expected the SplitPane to have a single Resizer' ); expect(findPanes().length).to.equal( 2, 'Expected the SplitPane to have 2 panes' ); return this; }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertContainsResizer
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneWidth(expectedWidth, pane = 'first') { return assertPaneStyles({ width: expectedWidth }, pane); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneWidth
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneHeight(expectedHeight, pane = 'first') { return assertPaneStyles({ height: expectedHeight }, pane); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneHeight
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertResizeByDragging(mousePositionDifference, expectedStyle) { simulateDragAndDrop(mousePositionDifference); return assertPaneStyles(expectedStyle, component.props.primary); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertResizeByDragging
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertResizeCallbacks( expectedDragStartedCallback, expectedDragFinishedCallback ) { simulateDragAndDrop(200); return assertCallbacks( expectedDragStartedCallback, expectedDragFinishedCallback ); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertResizeCallbacks
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertSizePersists(comp) { const pane = 'first'; changeSize(100, comp); assertPaneStyles({ width: '100px' }, pane); changeSize(undefined, comp); assertPaneStyles({ width: '100px' }, pane); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertSizePersists
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertResizerClasses(expectedClass) { assertClass(findResizer()[0], expectedClass); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertResizerClasses
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPrimaryPanelChange(newJsx, primaryPane, secondaryPane) { const primary = findPaneByOrder(primaryPane); const secondary = findPaneByOrder(secondaryPane); expect(primary.props.size).to.equal(50); expect(secondary.props.size).to.equal(undefined); updateComponent(newJsx); expect(pr...
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPrimaryPanelChange
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
assertPaneWidthChange(newJsx, expectedWidth, pane = 'first') { updateComponent(newJsx); return assertPaneStyles({ width: expectedWidth }, pane); }
getBoundingClientRect() does not work correctly with ReactTestUtils.renderIntoDocument(). So for testing resizing we need ReactDOM.render()
assertPaneWidthChange
javascript
tomkp/react-split-pane
test/assertions/Asserter.js
https://github.com/tomkp/react-split-pane/blob/master/test/assertions/Asserter.js
MIT
renderChunk(code, chunk, opts) { if (opts.format === 'umd') { // Can swap this out with MagicString.replace() when we bump it: // https://github.com/developit/microbundle/blob/f815a01cb63d90b9f847a4dcad2a64e6b2f8596f/src/index.js#L657-L671 const s = new MagicString(code); const m...
', plugins: [ [ require.resolve('babel-plugin-transform-replace-expressions'), { replace: defines }, ], ], }), customBabel()({ babelHelpers: 'bundled', extensions: EXTENSIONS, // use a regex to make sure to exclude eventual hoisted packages ...
renderChunk
javascript
developit/microbundle
src/index.js
https://github.com/developit/microbundle/blob/master/src/index.js
MIT
writeBundle(_, bundle) { config._sizeInfo = Promise.all( Object.values(bundle).map(({ code, fileName }) => { if (code) { return getSizeInfo(code, fileName, options.raw); } }), ).then(results => results.filter(Boolean).join('\n')); }
', plugins: [ [ require.resolve('babel-plugin-transform-replace-expressions'), { replace: defines }, ], ], }), customBabel()({ babelHelpers: 'bundled', extensions: EXTENSIONS, // use a regex to make sure to exclude eventual hoisted packages ...
writeBundle
javascript
developit/microbundle
src/index.js
https://github.com/developit/microbundle/blob/master/src/index.js
MIT
function safeVariableName(name) { const normalized = removeScope(name).toLowerCase(); const identifier = normalized.replace(INVALID_ES3_IDENT, ''); return camelCase(identifier); }
Turn a package name into a valid reasonably-unique variable name @param {string} name
safeVariableName
javascript
developit/microbundle
src/utils.js
https://github.com/developit/microbundle/blob/master/src/utils.js
MIT
function toReplacementExpression(value, name) { // --define A="1",B='true' produces string: const matches = value.match(/^(['"])(.+)\1$/); if (matches) { return [JSON.stringify(matches[2]), name]; } // --define @assign=Object.assign replaces expressions with expressions: if (name[0] === '@') { return [value,...
Convert booleans and int define= values to literals. This is more intuitive than `microbundle --define A=1` producing A="1".
toReplacementExpression
javascript
developit/microbundle
src/lib/option-normalization.js
https://github.com/developit/microbundle/blob/master/src/lib/option-normalization.js
MIT
function parseMappingArgument(globalStrings, processValue) { const globals = {}; globalStrings.split(',').forEach(globalString => { let [key, value] = globalString.split('='); if (processValue) { const r = processValue(value, key); if (r !== undefined) { if (Array.isArray(r)) { [value, key] = r; ...
Parses values of the form "$=jQuery,React=react" into key-value object pairs.
parseMappingArgument
javascript
developit/microbundle
src/lib/option-normalization.js
https://github.com/developit/microbundle/blob/master/src/lib/option-normalization.js
MIT
function parseAliasArgument(aliasStrings) { return aliasStrings.split(',').map(str => { let [key, value] = str.split('='); return { find: key, replacement: value }; }); }
Parses values of the form "$=jQuery,React=react" into key-value object pairs.
parseAliasArgument
javascript
developit/microbundle
src/lib/option-normalization.js
https://github.com/developit/microbundle/blob/master/src/lib/option-normalization.js
MIT
function fastRestTransform({ template, types: t }) { const slice = template`var IDENT = Array.prototype.slice;`; const VISITOR = { RestElement(path, state) { if (path.parentKey !== 'params') return; // Create a global _slice alias let slice = state.get('slice'); if (!slice) { slice = path.scope.ge...
Transform ...rest parameters to [].slice.call(arguments,offset). Demo: https://astexplorer.net/#/gist/70aaa0306db9a642171ef3e2f35df2e0/576c150f647e4936fa6960e0453a11cdc5d81f21 Benchmark: https://jsperf.com/rest-arguments-babel-pr-9152/4 @param {object} opts @param {babel.template} opts.template @param {babel.types} opt...
fastRestTransform
javascript
developit/microbundle
src/lib/transform-fast-rest.js
https://github.com/developit/microbundle/blob/master/src/lib/transform-fast-rest.js
MIT
RestElement(path, state) { if (path.parentKey !== 'params') return; // Create a global _slice alias let slice = state.get('slice'); if (!slice) { slice = path.scope.generateUidIdentifier('slice'); state.set('slice', slice); } // _slice.call(arguments) or _slice.call(arguments, 1) const ar...
Transform ...rest parameters to [].slice.call(arguments,offset). Demo: https://astexplorer.net/#/gist/70aaa0306db9a642171ef3e2f35df2e0/576c150f647e4936fa6960e0453a11cdc5d81f21 Benchmark: https://jsperf.com/rest-arguments-babel-pr-9152/4 @param {object} opts @param {babel.template} opts.template @param {babel.types} opt...
RestElement
javascript
developit/microbundle
src/lib/transform-fast-rest.js
https://github.com/developit/microbundle/blob/master/src/lib/transform-fast-rest.js
MIT
Program(path, state) { const childState = new Map(); const useHelper = state.opts.helper === true; // defaults to false if (!useHelper) { let inlineHelper; if (state.opts.literal === false) { inlineHelper = template.expression.ast`Array.prototype.slice`; } else { inlineHelper = t...
Transform ...rest parameters to [].slice.call(arguments,offset). Demo: https://astexplorer.net/#/gist/70aaa0306db9a642171ef3e2f35df2e0/576c150f647e4936fa6960e0453a11cdc5d81f21 Benchmark: https://jsperf.com/rest-arguments-babel-pr-9152/4 @param {object} opts @param {babel.template} opts.template @param {babel.types} opt...
Program
javascript
developit/microbundle
src/lib/transform-fast-rest.js
https://github.com/developit/microbundle/blob/master/src/lib/transform-fast-rest.js
MIT
function sameArgumentsObject(node, func, t) { while ((node = node.parentPath)) { if (node === func) { return true; } if (t.isFunction(node) && !t.isArrowFunctionExpression(node)) { return false; } } return false; }
Transform ...rest parameters to [].slice.call(arguments,offset). Demo: https://astexplorer.net/#/gist/70aaa0306db9a642171ef3e2f35df2e0/576c150f647e4936fa6960e0453a11cdc5d81f21 Benchmark: https://jsperf.com/rest-arguments-babel-pr-9152/4 @param {object} opts @param {babel.template} opts.template @param {babel.types} opt...
sameArgumentsObject
javascript
developit/microbundle
src/lib/transform-fast-rest.js
https://github.com/developit/microbundle/blob/master/src/lib/transform-fast-rest.js
MIT
function Assertion (obj, msg, stack) { flag(this, 'ssfi', stack || arguments.callee); flag(this, 'object', obj); flag(this, 'message', msg); }
# .use(function) Provides a way to extend the internals of Chai @param {Function} @returns {this} for chaining @api public
Assertion
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function an (type, msg) { if (msg) flag(this, 'message', msg); type = type.toLowerCase(); var obj = flag(this, 'object') , article = ~[ 'a', 'e', 'i', 'o', 'u' ].indexOf(type.charAt(0)) ? 'an ' : 'a '; this.assert( type === _.type(obj) , 'expected #{this}...
### .a(type) The `a` and `an` assertions are aliases that can be used either as language chains or to assert a value's type. // typeof expect('test').to.be.a('string'); expect({ foo: 'bar' }).to.be.an('object'); expect(null).to.be.a('null'); expect(undefined).to.be.an('undefined'); // languag...
an
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function includeChainingBehavior () { flag(this, 'contains', true); }
### .include(value) The `include` and `contain` assertions can be used as either property based language chains or as methods to assert the inclusion of an object in an array or a substring in a string. When used as language chains, they toggle the `contain` flag for the `keys` assertion. expect([1,2,3]).to.inclu...
includeChainingBehavior
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function include (val, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object') this.assert( ~obj.indexOf(val) , 'expected #{this} to include ' + _.inspect(val) , 'expected #{this} to not include ' + _.inspect(val)); }
### .include(value) The `include` and `contain` assertions can be used as either property based language chains or as methods to assert the inclusion of an object in an array or a substring in a string. When used as language chains, they toggle the `contain` flag for the `keys` assertion. expect([1,2,3]).to.inclu...
include
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function checkArguments () { var obj = flag(this, 'object') , type = Object.prototype.toString.call(obj); this.assert( '[object Arguments]' === type , 'expected #{this} to be arguments but got ' + type , 'expected #{this} to not be arguments' ); }
### .arguments Asserts that the target is an arguments object. function test () { expect(arguments).to.be.arguments; } @name arguments @alias Arguments @api public
checkArguments
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertEqual (val, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); if (flag(this, 'deep')) { return this.eql(val); } else { this.assert( val === obj , 'expected #{this} to equal #{exp}' , 'expec...
### .equal(value) Asserts that the target is strictly equal (`===`) to `value`. Alternately, if the `deep` flag is set, asserts that the target is deeply equal to `value`. expect('hello').to.equal('hello'); expect(42).to.equal(42); expect(1).to.not.equal(true); expect({ foo: 'bar' }).to.not.equal({ fo...
assertEqual
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertEql(obj, msg) { if (msg) flag(this, 'message', msg); this.assert( _.eql(obj, flag(this, 'object')) , 'expected #{this} to deeply equal #{exp}' , 'expected #{this} to not deeply equal #{exp}' , obj , this._obj , true ); ...
### .eql(value) Asserts that the target is deeply equal to `value`. expect({ foo: 'bar' }).to.eql({ foo: 'bar' }); expect([ 1, 2, 3 ]).to.eql([ 1, 2, 3 ]); @name eql @alias eqls @param {Mixed} value @param {String} message _optional_ @api public
assertEql
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertAbove (n, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); if (flag(this, 'doLength')) { new Assertion(obj, msg).to.have.property('length'); var len = obj.length; this.assert( len > n , 'expected #{...
### .above(value) Asserts that the target is greater than `value`. expect(10).to.be.above(5); Can also be used in conjunction with `length` to assert a minimum length. The benefit being a more informative error message than if the length was supplied directly. expect('foo').to.have.length.above(2); expe...
assertAbove
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertLeast (n, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); if (flag(this, 'doLength')) { new Assertion(obj, msg).to.have.property('length'); var len = obj.length; this.assert( len >= n , 'expected #...
### .least(value) Asserts that the target is greater than or equal to `value`. expect(10).to.be.at.least(10); Can also be used in conjunction with `length` to assert a minimum length. The benefit being a more informative error message than if the length was supplied directly. expect('foo').to.have.length.of...
assertLeast
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertBelow (n, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); if (flag(this, 'doLength')) { new Assertion(obj, msg).to.have.property('length'); var len = obj.length; this.assert( len < n , 'expected #{...
### .below(value) Asserts that the target is less than `value`. expect(5).to.be.below(10); Can also be used in conjunction with `length` to assert a maximum length. The benefit being a more informative error message than if the length was supplied directly. expect('foo').to.have.length.below(4); expect(...
assertBelow
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertMost (n, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); if (flag(this, 'doLength')) { new Assertion(obj, msg).to.have.property('length'); var len = obj.length; this.assert( len <= n , 'expected #{...
### .most(value) Asserts that the target is less than or equal to `value`. expect(5).to.be.at.most(5); Can also be used in conjunction with `length` to assert a maximum length. The benefit being a more informative error message than if the length was supplied directly. expect('foo').to.have.length.of.at.mos...
assertMost
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertInstanceOf (constructor, msg) { if (msg) flag(this, 'message', msg); var name = _.getName(constructor); this.assert( flag(this, 'object') instanceof constructor , 'expected #{this} to be an instance of ' + name , 'expected #{this} to not be an insta...
### .instanceof(constructor) Asserts that the target is an instance of `constructor`. var Tea = function (name) { this.name = name; } , Chai = new Tea('chai'); expect(Chai).to.be.an.instanceof(Tea); expect([ 1, 2, 3 ]).to.be.instanceof(Array); @name instanceof @param {Constructor} constructor @par...
assertInstanceOf
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertOwnProperty (name, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); this.assert( obj.hasOwnProperty(name) , 'expected #{this} to have own property ' + _.inspect(name) , 'expected #{this} to not have own property ' + _.insp...
### .ownProperty(name) Asserts that the target has an own property `name`. expect('test').to.have.ownProperty('length'); @name ownProperty @alias haveOwnProperty @param {String} name @param {String} message _optional_ @api public
assertOwnProperty
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertLengthChain () { flag(this, 'doLength', true); }
### .length(value) Asserts that the target's `length` property has the expected value. expect([ 1, 2, 3]).to.have.length(3); expect('foobar').to.have.length(6); Can also be used as a chain precursor to a value comparison for the length property. expect('foo').to.have.length.above(2); expect([ 1, 2, ...
assertLengthChain
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertLength (n, msg) { if (msg) flag(this, 'message', msg); var obj = flag(this, 'object'); new Assertion(obj, msg).to.have.property('length'); var len = obj.length; this.assert( len == n , 'expected #{this} to have a length of #{exp} but got #{ac...
### .length(value) Asserts that the target's `length` property has the expected value. expect([ 1, 2, 3]).to.have.length(3); expect('foobar').to.have.length(6); Can also be used as a chain precursor to a value comparison for the length property. expect('foo').to.have.length.above(2); expect([ 1, 2, ...
assertLength
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function assertKeys (keys) { var obj = flag(this, 'object') , str , ok = true; keys = keys instanceof Array ? keys : Array.prototype.slice.call(arguments); if (!keys.length) throw new Error('keys required'); var actual = Object.keys(obj) ...
### .keys(key1, [key2], [...]) Asserts that the target has exactly the given keys, or asserts the inclusion of some keys when using the `include` or `contain` modifiers. expect({ foo: 1, bar: 2 }).to.have.keys(['foo', 'bar']); expect({ foo: 1, bar: 2, baz: 3 }).to.contain.keys('foo', 'bar'); @name keys @alia...
assertKeys
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function AssertionError (options) { options = options || {}; this.message = options.message; this.actual = options.actual; this.expected = options.expected; this.operator = options.operator; this.showDiff = options.showDiff; if (options.stackStartFunction && Error.captureStack...
# AssertionError (constructor) Create a new assertion error based on the Javascript `Error` prototype. **Options** - message - actual - expected - operator - startStackFunction @param {Object} options @api public
AssertionError
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function loadShould () { // modify Object.prototype to have `should` Object.defineProperty(Object.prototype, 'should', { set: function (value) { // See https://github.com/chaijs/chai/issues/86: this makes // `whatever.should = someValue` actually set `so...
### .closeTo(actual, expected, delta, [message]) Asserts that the target is equal `expected`, to within a +/- `delta` range. assert.closeTo(1.5, 1, 0.5, 'numbers are close'); @name closeTo @param {Number} actual @param {Number} expected @param {Number} delta @param {String} message @api public
loadShould
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
assert = function () { var result = method.apply(this, arguments); return result === undefined ? this : result; }
### addChainableMethod (ctx, name, method, chainingBehavior) Adds a method to an object, such that the method can also be chained. utils.addChainableMethod(chai.Assertion.prototype, 'foo', function (str) { var obj = utils.flag(this, 'object'); new chai.Assertion(obj).to.be.equal(str); }); Can als...
assert
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function _deepEqual(actual, expected, memos) { // 7.1. All identical values are equivalent, as determined by ===. if (actual === expected) { return true; } else if (Buffer.isBuffer(actual) && Buffer.isBuffer(expected)) { if (actual.length != expected.length) return false; fo...
### addProperty (ctx, name, getter) Adds a property to the prototype of an object. utils.addProperty(chai.Assertion.prototype, 'foo', function () { var obj = utils.flag(this, 'object'); new chai.Assertion(obj).to.be.instanceof(Foo); }); Can also be accessed directly from `chai.Assertion`. ch...
_deepEqual
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isUndefinedOrNull(value) { return value === null || value === undefined; }
### addProperty (ctx, name, getter) Adds a property to the prototype of an object. utils.addProperty(chai.Assertion.prototype, 'foo', function () { var obj = utils.flag(this, 'object'); new chai.Assertion(obj).to.be.instanceof(Foo); }); Can also be accessed directly from `chai.Assertion`. ch...
isUndefinedOrNull
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isArguments(object) { return Object.prototype.toString.call(object) == '[object Arguments]'; }
### addProperty (ctx, name, getter) Adds a property to the prototype of an object. utils.addProperty(chai.Assertion.prototype, 'foo', function () { var obj = utils.flag(this, 'object'); new chai.Assertion(obj).to.be.instanceof(Foo); }); Can also be accessed directly from `chai.Assertion`. ch...
isArguments
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function objEquiv(a, b, memos) { if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) return false; // an identical 'prototype' property. if (a.prototype !== b.prototype) return false; // check if we have already compared a and b var i; if (memos) { for(i = 0; i < memo...
### addProperty (ctx, name, getter) Adds a property to the prototype of an object. utils.addProperty(chai.Assertion.prototype, 'foo', function () { var obj = utils.flag(this, 'object'); new chai.Assertion(obj).to.be.instanceof(Foo); }); Can also be accessed directly from `chai.Assertion`. ch...
objEquiv
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function parsePath (path) { var str = path.replace(/\[/g, '.[') , parts = str.match(/(\\\.|[^.]+?)+/g); return parts.map(function (value) { var re = /\[(\d+)\]$/ , mArr = re.exec(value) if (mArr) return { i: parseFloat(mArr[1]) }; else return { p: value }; });...
### .getPathValue(path, object) This allows the retrieval of values in an object given a string path. var obj = { prop1: { arr: ['a', 'b', 'c'] , str: 'Hello' } , prop2: { arr: [ { nested: 'Universe' } ] , str: 'Hello again!' } } The f...
parsePath
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function _getPathValue (parsed, obj) { var tmp = obj , res; for (var i = 0, l = parsed.length; i < l; i++) { var part = parsed[i]; if (tmp) { if ('undefined' !== typeof part.p) tmp = tmp[part.p]; else if ('undefined' !== typeof part.i) tmp ...
### .getPathValue(path, object) This allows the retrieval of values in an object given a string path. var obj = { prop1: { arr: ['a', 'b', 'c'] , str: 'Hello' } , prop2: { arr: [ { nested: 'Universe' } ] , str: 'Hello again!' } } The f...
_getPathValue
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function addProperty(property) { if (result.indexOf(property) === -1) { result.push(property); } }
### .getProperties(object) This allows the retrieval of property names of an object, enumerable or not, inherited or not. @param {Object} object @returns {Array} @name getProperties @api public
addProperty
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function inspect(obj, showHidden, depth, colors) { var ctx = { showHidden: showHidden, seen: [], stylize: function (str) { return str; } }; return formatValue(ctx, obj, (typeof depth === 'undefined' ? 2 : depth)); }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
inspect
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
getOuterHTML = function(element) { if ('outerHTML' in element) return element.outerHTML; var ns = "http://www.w3.org/1999/xhtml"; var container = document.createElementNS(ns, '_'); var elemProto = (window.HTMLElement || window.Element).prototype; var xmlSerializer = new XMLSerializer(); ...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
getOuterHTML
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
isDOMElement = function (object) { if (typeof HTMLElement === 'object') { return object instanceof HTMLElement; } else { return object && typeof object === 'object' && object.nodeType === 1 && typeof object.nodeName === 'string'; } }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
isDOMElement
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function formatValue(ctx, value, recurseTimes) { // Provide a hook for user-specified inspect functions. // Check that value is an object with an inspect function on it if (value && typeof value.inspect === 'function' && // Filter out the util module, it's inspect function is special ...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
formatValue
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function formatPrimitive(ctx, value) { switch (typeof value) { case 'undefined': return ctx.stylize('undefined', 'undefined'); case 'string': var simple = '\'' + JSON.stringify(value).replace(/^"|"$/g, '') .replace(/'/g, "\\'"...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
formatPrimitive
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function formatError(value) { return '[' + Error.prototype.toString.call(value) + ']'; }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
formatError
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { var output = []; for (var i = 0, l = value.length; i < l; ++i) { if (Object.prototype.hasOwnProperty.call(value, String(i))) { output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
formatArray
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) { var name, str; if (value.__lookupGetter__) { if (value.__lookupGetter__(key)) { if (value.__lookupSetter__(key)) { str = ctx.stylize('[Getter/Setter]', 'special'); } else { str = ...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
formatProperty
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function reduceToSingleString(output, base, braces) { var numLinesEst = 0; var length = output.reduce(function(prev, cur) { numLinesEst++; if (cur.indexOf('\n') >= 0) numLinesEst++; return prev + cur.length + 1; }, 0); if (length > 60) { return braces[0] + ...
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
reduceToSingleString
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isArray(ar) { return Array.isArray(ar) || (typeof ar === 'object' && objectToString(ar) === '[object Array]'); }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
isArray
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isRegExp(re) { return typeof re === 'object' && objectToString(re) === '[object RegExp]'; }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
isRegExp
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isDate(d) { return typeof d === 'object' && objectToString(d) === '[object Date]'; }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
isDate
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT
function isError(e) { return typeof e === 'object' && objectToString(e) === '[object Error]'; }
Echos the value of a value. Trys to print the value out in the best way possible given the different types. @param {Object} obj The object to print out. @param {Boolean} showHidden Flag that shows hidden (not enumerable) properties of objects. @param {Number} depth Depth in which to descend in object. Default is 2....
isError
javascript
dobtco/formbuilder
test/vendor/js/chai.js
https://github.com/dobtco/formbuilder/blob/master/test/vendor/js/chai.js
MIT