UNPKG

stylelint

Version:

A mighty, modern CSS linter.

10 lines (8 loc) 187 B
/* @flow */ "use strict"; /** * Check whether a property is a custom one */ module.exports = function(property /*: string*/) /*: boolean*/ { return property.slice(0, 2) === "--"; };