Last change
on this file was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago |
primeNG components
|
-
Property mode
set to
100644
|
File size:
402 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | module.exports = {
|
---|
| 4 | metaSchemaRef: metaSchemaRef
|
---|
| 5 | };
|
---|
| 6 |
|
---|
| 7 | var META_SCHEMA_ID = 'http://json-schema.org/draft-07/schema';
|
---|
| 8 |
|
---|
| 9 | function metaSchemaRef(ajv) {
|
---|
| 10 | var defaultMeta = ajv._opts.defaultMeta;
|
---|
| 11 | if (typeof defaultMeta == 'string') return { $ref: defaultMeta };
|
---|
| 12 | if (ajv.getSchema(META_SCHEMA_ID)) return { $ref: META_SCHEMA_ID };
|
---|
| 13 | console.warn('meta schema not defined');
|
---|
| 14 | return {};
|
---|
| 15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.