10 lines
157 B
Dart

library angular.core.facade.math;
import 'dart:math' as math;
class Math {
static num pow(num x, num exponent) {
return math.pow(x, exponent);
}
}