acorn-import-phases
Support for `import <defer|source>` phase syntax in Acorn
Last updated 9 months ago by nicolo-ribaudo .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install acorn-import-phases 
SYNC missed versions from official npm registry.

Support for import defer and import souce in acorn

Install

npm install acorn-import-phases

Usage

This module provides a plugin that can be used to extend the Acorn Parser class:

const {Parser} = require('acorn');
const importPhases = require('acorn-import-phases');
Parser.extend(importPhases()).parse('...');

By default, the plugin supports both import defer and import source syntax. You can disable one of them by passing an options object:

const {Parser} = require('acorn');
const importPhases = require('acorn-import-phases');
Parser.extend(importPhases({ defer: false })).parse('...');
Parser.extend(importPhases({ source: false })).parse('...');

License

This plugin is released under an MIT License.

Current Tags

  • 1.0.4                                ...           latest (9 months ago)

5 Versions

  • 1.0.4                                ...           9 months ago
  • 1.0.3                                ...           9 months ago
  • 1.0.2                                ...           9 months ago
  • 1.0.1                                ...           9 months ago
  • 1.0.0                                ...           9 months ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (1)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |