This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const userAgent = typeof window !== 'undefined' ? window.navigator.userAgent : 'no-window'; | |
| const isBot = /bot|crawler|spider|crawling/i.test(userAgent); | |
| export class ServerLogStream { | |
| constructor(opts = {}) { | |
| const { | |
| writeCondition = ServerLogStream.defaultWriteCondition, | |
| } = opts; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createRouter } from 'router'; | |
| const router = createRouter([ | |
| { | |
| path: '/foo:/ | |
| view: <MyComponent /> | |
| enter: ({ foo }) => store.loadVenue(foo); | |
| }, | |
| paths: [ '/foo:/', 'bar:/' ], | |
| view: <SomethingElse /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parseInt(10); // eslint-disable-line rule-name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { getRandomWord } = require('word-maker'); | |
| const getFizzBuzz = n => `${n % 3 === 0 ? 'Fizz' : ''}${n % 5 === 0 ? 'Buzz' : ''}`; | |
| async function getResults() { | |
| const promises = Array(100).fill().map(async (v, i) => { | |
| i++; | |
| try { | |
| return `${i}: ${getFizzBuzz(i) || await getRandomWord({ withErrors: true })}`; | |
| } catch (err) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given('I do a custom login', function(credentials) { | |
| const { username, password } = credentials; | |
| const agent = this.currentAgent; | |
| await agent | |
| .post(this.replaceVars(`${base}/api/login`)); | |
| .send({ | |
| username, | |
| password, | |
| }); |
OlderNewer