MCPcopy Create free account
hub / github.com/idank/explainshell / d3_scale_powPow

Function d3_scale_powPow

explainshell/web/static/js/d3.v3.js:6604–6608  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

6602 return d3_scale_linearRebind(scale, linear);
6603 }
6604 function d3_scale_powPow(e) {
6605 return function(x) {
6606 return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);
6607 };
6608 }
6609 d3.scale.sqrt = function() {
6610 return d3.scale.pow().exponent(.5);
6611 };

Callers 1

d3_scale_powFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected