Dev Checkpoint 201906252113

This commit is contained in:
Chris Walker 2019-06-25 21:13:49 -06:00
commit e7993dca97
3 changed files with 79 additions and 107 deletions

View file

@ -0,0 +1,9 @@
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";
})();