loopback/lib/globalize.js

12 lines
376 B
JavaScript
Raw Normal View History

2020-01-21 19:19:18 +00:00
// Copyright IBM Corp. 2016,2019. 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';
const path = require('path');
const SG = require('strong-globalize');
2016-09-16 19:31:48 +00:00
SG.SetRootDir(path.join(__dirname, '..'), {autonomousMsgLoading: 'all'});
2016-09-16 19:31:48 +00:00
module.exports = SG();