Home Manual Reference Source

src/num/unary/pow3.js

const pow3 = (obj) => obj * obj * obj;
export default pow3;