Code coverage report for 6to5/transformation/transformers/numeric-literals.js

Statements: 100% (4 / 4)      Branches: 100% (2 / 2)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » 6to5/transformation/transformers/ » numeric-literals.js
1 2 3 4 5 6 71   1   471    
var _ = require("lodash");
 
exports.Literal = function (node) {
  // TODO: remove this when the new code generator is released
  if (_.isNumber(node.value)) delete node.raw;
};