Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jest-raw-loader.js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16af98c7ea800c9022992aa73f9cbc6d2c759d68 (plain)
1
2
3
4
5
6
7
8
9
// jest-raw-loader compatibility with Jest version 28.
// See: https://github.com/keplersj/jest-raw-loader/pull/239
module.exports = {
	process: (content) => {
		return {
			code: 'module.exports = ' + JSON.stringify(content),
		}
	},
}