Skip to content

diasbruno/js-trace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-trace

import trace from './jstrace';

function add(x, y) {
  return x + y;
}

trace(add)(1, 2);

Output:

Calling function: add
Input(s):
0: 1
1: 2
Output:
3