1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-30 08:46:01 -04:00
notes/node_modules/postcss-less/dist/tokenizer/tokenize-inline-comment.min.js

1 line
391 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
"use strict";function tokenizeInlineComment(e){e.nextPos=e.css.indexOf("\n",e.pos+2)-1,e.nextPos===-2&&(e.nextPos=e.css.length-1),e.tokens.push(["comment",e.css.slice(e.pos,e.nextPos+1),e.line,e.pos-e.offset,e.line,e.nextPos-e.offset,"inline"]),e.pos=e.nextPos}Object.defineProperty(exports,"__esModule",{value:!0}),exports["default"]=tokenizeInlineComment,module.exports=exports["default"];