UNPKG

tap-parser

Version:

parse the test anything protocol

14 lines 503 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SPACE_OPEN_BRACE_EOL = exports.OPEN_BRACE_EOL = void 0; /** * this isn't for performance or anything, it just confuses vim's * brace-matching to have these in the middle of functions, and * I'm too lazy to dig into vim-javascript to fix it, so hence these * capital snake consts. * * @module */ exports.OPEN_BRACE_EOL = /\{\s*$/; exports.SPACE_OPEN_BRACE_EOL = / \{$/; //# sourceMappingURL=brace-patterns.js.map