92142061433095fb656d039862cc4cee82445407
[dotfiles/.git] / unclosed.js
1 "use strict";
2
3 Object.defineProperty(exports, "__esModule", {
4   value: true
5 });
6 exports.default = unclosed;
7 function unclosed(state, what) {
8   throw state.input.error("Unclosed " + what, state.line, state.pos - state.offset);
9 }
10 module.exports = exports["default"];