blob: f7227d82d5ba61c056f43af80252d052e9fc8a86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { deprecated } from '../internal/deprecated';
import { faker as cs_CZ } from './cs_CZ';
export const faker = (() => {
deprecated({
deprecated: "import { faker } from '@faker-js/faker/locale/cz'",
proposed: "import { faker } from '@faker-js/faker/locale/cs_CZ'",
since: '8.0',
until: '9.0',
});
return cs_CZ;
})();
|