Skip to content

Commit

Permalink
fix(closure-compiler): remove internal flag from _isScalar (#3520)
Browse files Browse the repository at this point in the history
the internal flag was causing issues with _isScalar checks when combined with closure compiler, removing it and opting for a comment and an obviously internal _name
  • Loading branch information
benlesh authored Apr 5, 2018
1 parent b069473 commit b3a657d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/Observable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { config } from './config';
*/
export class Observable<T> implements Subscribable<T> {

/** @internal */
/** Internal implementation detail, do not use directly. */
public _isScalar: boolean = false;

protected source: Observable<any>;
Expand Down

0 comments on commit b3a657d

Please sign in to comment.