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

10 lines
254 B
JavaScript

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