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