mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 07:16:08 +08:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import filter from './filter.js';
|
|
|
|
// Trim out all falsy values from an array.
|
|
export default function compact(array) {
|
|
return filter(array, Boolean);
|
|
}
|