@itm-platform/dp-js-library
v1.0.7
Published
Second js bundled
Downloads
1
Readme
#just a test
Named Public function being cube(x)
Default export is sixth(x)
const square = (x) =>{
return x*x;
}
const cube = (x) => {
return square(x)*1.5;
}
export {cube}
export default{
sixth:function (x){
return cube(x)*2
}
}