UNPKG

@testim/testim-cli

Version:

Command line interface for running Testing on you CI

8 lines (7 loc) 276 B
/** * Determines whether an observable sequence is empty. * @returns {Observable} An observable sequence containing a single element determining whether the source sequence is empty. */ observableProto.isEmpty = function () { return this.any().map(not); };