15 lines
469 B
JavaScript
15 lines
469 B
JavaScript
// Copyright IBM Corp. 2014,2018. All Rights Reserved.
|
|
// Node module: loopback
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
'use strict';
|
|
var g = require('../../lib/globalize');
|
|
|
|
module.exports = function() {
|
|
throw new Error(g.f(
|
|
'%s middleware was removed in version 3.0. See %s for more details.',
|
|
'loopback#context',
|
|
'http://loopback.io/doc/en/lb2/Using-current-context.html'));
|
|
};
|