2020-09-28 17:56:59 +03:00
|
|
|
// #docplaster
|
|
|
|
/*
|
|
|
|
Because of how the code is merged together using the doc regions,
|
|
|
|
we need to indent the imports with the function below.
|
|
|
|
*/
|
|
|
|
/* tslint:disable:align */
|
2018-01-09 11:31:41 -08:00
|
|
|
// #docregion
|
2020-09-28 17:56:59 +03:00
|
|
|
import { of } from 'rxjs';
|
|
|
|
import { map } from 'rxjs/operators';
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
// #enddocregion
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
export function docRegionDefault(console) {
|
|
|
|
// #docregion
|
|
|
|
const nums = of(1, 2, 3);
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
const squareValues = map((val: number) => val * val);
|
|
|
|
const squaredNums = squareValues(nums);
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
squaredNums.subscribe(x => console.log(x));
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
// Logs
|
|
|
|
// 1
|
|
|
|
// 4
|
|
|
|
// 9
|
2018-01-09 11:31:41 -08:00
|
|
|
|
2020-09-28 17:56:59 +03:00
|
|
|
// #enddocregion
|
|
|
|
}
|