Sha256: 42db7d514d3dd7e1d697a43f4035b753f799608f172df97e68d50477f70ea698
Contents?: true
Size: 389 Bytes
Versions: 14
Compression:
Stored size: 389 Bytes
Contents
/** * Creates a pattern that matches when both observable sequences have an available value. * * @param right Observable sequence to match with the current sequence. * @return {Pattern} Pattern object that matches when both observable sequences have an available value. */ observableProto.and = function (right) { return new Pattern([this, right]); };
Version data entries
14 entries across 7 versions & 1 rubygems