mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 20:15:38 +00:00
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
/**
|
|
* Check whether a function is custom / user-defined
|
|
* https://github.com/w3c/css-houdini-drafts/issues/1007
|
|
* @param {string} func
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isCustomFunction(func) {
|
|
return func.startsWith('--');
|
|
}
|