loopback/lib/globalize.js

12 lines
372 B
JavaScript
Raw Normal View History

// Copyright IBM Corp. 2016,2018. All Rights Reserved.
2016-09-23 14:32:22 +00:00
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
'use strict';
2016-09-16 19:31:48 +00:00
var path = require('path');
var SG = require('strong-globalize');
SG.SetRootDir(path.join(__dirname, '..'), {autonomousMsgLoading: 'all'});
2016-09-16 19:31:48 +00:00
module.exports = SG();