mirror of https://github.com/webpack/webpack.git
8 lines
124 B
JavaScript
8 lines
124 B
JavaScript
|
export function getNumber() {
|
||
|
return 42;
|
||
|
}
|
||
|
|
||
|
export function getRandomNumber() {
|
||
|
return Math.floor(Math.random() * 256);
|
||
|
}
|