mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 18:59:27 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
var filter = require('./filter.js');
|
|
|
|
// Trim out all falsy values from an array.
|
|
function compact(array) {
|
|
return filter(array, Boolean);
|
|
}
|
|
|
|
module.exports = compact;
|