Hieu (Harrison) Van

Results 2 comments of Hieu (Harrison) Van

Hi @asn007, From Airbnb style guide: https://github.com/airbnb/javascript#modules--no-export-from-import ``` // bad // filename es6.js export { es6 as default } from './AirbnbStyleGuide'; // good // filename es6.js import { es6 }...

Hi @asn007, There are just a few cases using require: 1. `const api = require('module');` 2. `const { get, post, patch } = require('module');` 3. ``` const { BadUserInputError, schemas:...