scMathUtil.js 358 B

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