Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: appengine/config_service/ui/bower_components/stacky/lib/index.js

Issue 2923973003: Added base template for config ui. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698