Code coverage report for src/operator/publishBehavior.ts

Statements: 100% (5 / 5)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (4 / 4)      Ignored: none     

All files » src/operator/ » publishBehavior.ts
1 2 3 4 5 6 71 1   1 17    
import {BehaviorSubject} from '../subject/BehaviorSubject';
import {multicast} from './multicast';
 
export function publishBehavior(value: any) {
  return multicast.call(this, new BehaviorSubject(value));
}