Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ const uniqueString = (string) => {
*/
const replaceVariables = (el,value) => {

// Guard against undefined or non-string values
if (typeof value !== 'string') {
return value || '';
}

// find non-nested css function calls
// eg: rgb(...), drop-shadow(...)
let funcReg = /([a-z\-]+)\s*\(\s*([^\(\)]*?)\s*(?:,\s*([^\(\)]*?)\s*)?\s*\)/i;
Expand Down