Your IP : 216.73.216.145


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