UNPKG

pascal-utils

Version:

Utility functions for compilation of simple pascal programs, with the Free Pascal compiler, in Node.js.

8 lines 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isVersionString(version) { const versionStringRegex = /^\d+\.\d+\.\d+$/; return versionStringRegex.test(version); } exports.default = isVersionString; //# sourceMappingURL=isVersionString.js.map