UNPKG

304 BJavaScriptView Raw
1'use strict';
2
3/*!
4 * Snakeskin
5 * https://github.com/SnakeskinTpl/Snakeskin
6 *
7 * Released under the MIT license
8 * https://github.com/SnakeskinTpl/Snakeskin/blob/master/LICENSE
9 */
10
11global.i18n = function (str, a, b) {
12 return str + (a ? a + b : '');
13};
14
15global.returnOne = function () {
16 return 1;
17};