mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
import hasEx6 from './es6-ext';
|
|
import multiply from "./es6.input.js";
|
|
import * as foo from "some-other-module";
|
|
|
|
/**
|
|
* This function returns the number one.
|
|
* @returns {Number} numberone
|
|
*/
|
|
var multiplyTwice = (a) => a * multiply(a);
|
|
|
|
export default multiplyTwice;
|