webpack-auto-inject-version/demo/src/main.js

12 lines
166 B
JavaScript

var html = require('./index.html');
/**
* Sample code
* @type {number}
*/
var myVariable = 5;
var test = function(val) {
return val * val;
};
test(myVariable);