| OLD | NEW |
| (Empty) | |
| 1 /** |
| 2 * @license |
| 3 * Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 * |
| 5 * This code may only be used under the BSD style license found at polymer.githu
b.io/LICENSE.txt |
| 6 * The complete set of authors may be found at polymer.github.io/AUTHORS.txt |
| 7 * The complete set of contributors may be found at polymer.github.io/CONTRIBUTO
RS.txt |
| 8 * Code distributed by Google as part of the polymer project is also subject to |
| 9 * an additional IP rights grant found at polymer.github.io/PATENTS.txt |
| 10 */ |
| 11 'use strict'; |
| 12 |
| 13 var formatting = require('./formatting'); |
| 14 var normalization = require('./normalization'); |
| 15 var parsing = require('./parsing'); |
| 16 |
| 17 module.exports = { |
| 18 // Shorthands for your convenience. |
| 19 normalize: normalization.normalize, |
| 20 parse: parsing.parse, |
| 21 pretty: formatting.pretty, |
| 22 // Or the full modules. |
| 23 formatting: formatting, |
| 24 normalization: normalization, |
| 25 parsing: parsing, |
| 26 }; |
| OLD | NEW |