thingsboard/ui/node_modules/stylelint/lib/utils/declarationValueIndex.js

21 lines
467 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
'use strict';
const _ = require('lodash');
/**
* Get the index of a declaration's value
*
* @param {import('postcss').Declaration} decl
*
* @returns {number}
*/
module.exports = function(decl) {
return [
_.get(decl, 'raws.prop.prefix'),
_.get(decl, 'raws.prop.raw', decl.prop),
_.get(decl, 'raws.prop.suffix'),
_.get(decl, 'raws.between', ':'),
_.get(decl, 'raws.value.prefix'),
].reduce((count, str) => (str ? count + str.length : count), 0);
};