mirror of https://github.com/webpack/webpack.git
7 lines
118 B
JavaScript
7 lines
118 B
JavaScript
|
import { greet } from "library";
|
||
|
|
||
|
// Valid value
|
||
|
console.log(greet("world"));
|
||
|
// Wrong value
|
||
|
console.log(greet(128));
|