swig/Examples/test-suite/javascript/native_directive_runme.js
2019-06-25 21:13:49 -06:00

9 lines
275 B
JavaScript

var native_directive = require("native_directive");
(function main() {
var s = "abc.DEF-123";
if (native_directive.CountAlphas(s) !== 6)
throw "CountAlphas failed";
if (native_directive.CountAlphaCharacters(s) !== 6)
throw "CountAlphaCharacters failed";
})();