src/utils/decant.js
export default function decant ( input , output ) {
while ( !input.empty( ) ) output.push( input.pop( ) ) ;
}
export default function decant ( input , output ) {
while ( !input.empty( ) ) output.push( input.pop( ) ) ;
}