thanks for your nice iso checker. I noticed that there is some ES6 writing in it that doesn't get handled by polyfills.
In your iso7064 model you omit key: value annotation, which is totally ok for ES6. If you are stuck with old browser support you can change the code to:
Hi,
thanks for your nice iso checker. I noticed that there is some ES6 writing in it that doesn't get handled by polyfills.
In your iso7064 model you omit key: value annotation, which is totally ok for ES6. If you are stuck with old browser support you can change the code to:
compute: function(rawValue) {
and
In your stringifyInput function you set a default for valueName. Also, great for ES6. If you need it older just modify it like that:
And everything will be fine in the old browsers.
Hope this helps someone - only minor stuff. bye