UNPKG

505 BJavaScriptView Raw
1/**
2 * @license Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md.
4 */
5
6'use strict';
7
8/**
9 * Very simple loader that runs the translateSource function only on the source.
10 * translateSource is provided by the CKEditorWebpackPlugin.
11 *
12 * @param {String} source Source which will be translated.
13 * @returns {String}
14 */
15module.exports = function translateSourceLoader( source ) {
16 return this.query.translateSource( source, this.resourcePath );
17};