JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "join-layer.js"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/node_modules/postcss-import/lib/join-layer.js
File size: 303 bytes
MIME-type: text/plain
Charset: utf-8
"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)
}