This commit is contained in:
Henry Jameson 2024-09-20 02:07:27 +03:00
commit d8d766932a
2 changed files with 2 additions and 3 deletions

View file

@ -125,7 +125,6 @@ export const deserialize = (input) => {
output.directives = Object.fromEntries(content.map(d => {
const [property, value] = d.split(':')
console.log(property, value)
let realValue = value.trim()
if (property === 'shadow') {
realValue = parseShadow(value.split(',').map(v => v.trim()))