atom-selected-requires
Retrieve the paths of any require statements in the current selection. Originally extracted from atom-node-resolver, and syntax-aware, just like browserify.
Usage
paths = selectedRequires([editor])
Given an editor
, check all of the current selections and return an array of require paths
. If no editor is
supplied, the currently active editor will be used.
For example, given a file like so:
const a =const b =const c =
You could run the following:
const selectedRequires =const editor = atomworkspaceconsole
And receive an array like so in return:
'atom-selected-requires''@scoped/package''./local-file'
See Also
License
MIT. See LICENSE.md for details.