NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/hsl-regex/index.js
2023-09-14 14:47:11 +08:00

10 lines
259 B
Java

'use strict';
module.exports = function hslRegex(options) {
options = options || {};
return options.exact ?
/^hsl\(\s*(\d+)\s*,\s*(\d*(?:\.\d+)?%)\s*,\s*(\d*(?:\.\d+)?%)\)$/ :
/hsl\(\s*(\d+)\s*,\s*(\d*(?:\.\d+)?%)\s*,\s*(\d*(?:\.\d+)?%)\)/ig;
}