hugoWebsite/node_modules/postcss-import/lib/join-layer.js

10 lines
303 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02:00
"use strict"
module.exports = function (parentLayer, childLayer) {
if (!parentLayer.length && childLayer.length) return childLayer
if (parentLayer.length && !childLayer.length) return parentLayer
if (!parentLayer.length && !childLayer.length) return []
return parentLayer.concat(childLayer)
}