I have a function that is defined in an ES6 module (sender.js
) as follows:
function send() {
// do stuff
}
export {send};
This module is then used in the application's main JavaScript file app.js
as follows:
import {send} from "./sender"
The send
function is available in the app.js
file, however it is not in Firefox's Javascript console:
> send
ReferenceError: send is not defined
How can I import the send
function in the JavaScript console?