(x: any)
| 862 | it("map series element to a function statement", function () { |
| 863 | const sf = new Series([1, 2, 3, 4]); |
| 864 | const func_map = (x: any) => { |
| 865 | return x + 1; |
| 866 | }; |
| 867 | const rslt = [2, 3, 4, 5]; |
| 868 | assert.deepEqual((sf.map(func_map)).values, rslt); |
| 869 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected