Open pillowfication opened 1 month ago
Seems like this method is responsible for checking if the value is equal to "default"
.
https://github.com/durs/node-activex/blob/8f226abaa88f6e61be4e3af1978b058d5517dcb3/src/utils.h#L403
If this behavior is necessary, is it possible to change the string to something that wouldn't ever conflict? I really need to pass a string of "default"
.
// Some very unique string
winax.Default = '{{WINAX_DEFAULT_PARAM}}'
const winax = require('winax')
// This passes a string with value "default"
workbook.SaveAs('default')
// This uses the default value of the parameter
workbook.SaveAs(winax.Default)
Whenever I try to pass a value of
"default"
into a function, it seems to get ignored.I've tried the following: