Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

há 3 anos
123456789101112131415161718192021
  1. # babel-helpers
  2. > Collection of helper functions used by Babel transforms.
  3. ## Install
  4. ```sh
  5. npm install --save-dev babel-helpers
  6. ```
  7. ## Usage
  8. ```js
  9. import * as helpers from 'babel-helpers';
  10. import * as t from 'babel-types';
  11. const typeofHelper = helpers.get('typeof');
  12. t.isExpressionStatement(typeofHelper);
  13. // true
  14. ```