watermarks.js 346 B

123456789101112131415
  1. /*
  2. Copyright 2012-2015, Yahoo Inc.
  3. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
  4. */
  5. module.exports = {
  6. getDefault: function () {
  7. return {
  8. statements: [50, 80],
  9. functions: [50, 80],
  10. branches: [50, 80],
  11. lines: [50, 80]
  12. };
  13. }
  14. };