| Current Path : /home/users/unlimited/www/sigmaerp.codeskitter.site/node_modules/postcss-import/lib/ |
| Current File : /home/users/unlimited/www/sigmaerp.codeskitter.site/node_modules/postcss-import/lib/join-layer.js |
"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)
}