ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
8 lines (7 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var getNextMatchingPos_1 = require("./getNextMatchingPos");
function getNextNonWhitespacePos(text, pos) {
return getNextMatchingPos_1.getNextMatchingPos(text, pos, function (char) { return char !== " " && char !== "\t" && char !== "\r" && char !== "\n"; });
}
exports.getNextNonWhitespacePos = getNextNonWhitespacePos;