blob: d0b42b610668fb901f3ff29bbc4b14df878b6a69 [file] [log] [blame]
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class ArrayUtilService {
constructor() { }
public isNotEmpty(array: any[]) {
return array != undefined && array.length > 0;
}
}