scMathUtil.js 391 B

1234567891011121314151617
  1. /**
  2. * Created by Tony on 2017/4/14.
  3. */
  4. const fs = require('fs');
  5. let scMath = null;
  6. let getScMathUtil = function() {
  7. if (!(scMath)) {
  8. let data = fs.readFileSync(__dirname + '/web/scMathUtil.js', 'utf8', 'r');
  9. //console.log(data);
  10. eval(data + ' scMath = scMathUtil;');
  11. //scMath = scMathUtil;
  12. }
  13. return scMath;
  14. };
  15. exports.getUtil = getScMathUtil;