mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-16 00:11:28 +00:00
Even more math (#56)
Remaining implementations of JavaScript's Math functions (except sin/cos/tan), both double (Math) and single (Mathf) precision, ported from musl incl. tests from libc-test, plus some changes to match JS semantics. Also binds fmod to `%` and pow to `**`.
This commit is contained in:
@ -52,6 +52,9 @@ const bin = {
|
||||
globalObject: "typeof self !== 'undefined' ? self : this"
|
||||
},
|
||||
devtool: "source-map",
|
||||
performance: {
|
||||
hints : false
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
BUNDLE_VERSION: JSON.stringify(require("./package.json").version),
|
||||
|
Reference in New Issue
Block a user