watermarks.js 335 B

1234567891011121314
  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() {
  7. return {
  8. statements: [50, 80],
  9. functions: [50, 80],
  10. branches: [50, 80],
  11. lines: [50, 80]
  12. };
  13. }
  14. };