mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 04:27:17 -04:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
|
||
|
exports.default = function (decl) {
|
||
|
var beforeColon = decl.toString().indexOf(":");
|
||
|
var afterColon = decl.raw("between").length - decl.raw("between").indexOf(":");
|
||
|
return beforeColon + afterColon;
|
||
|
};
|