1
0
mirror of https://github.com/thangisme/notes.git synced 2026-06-11 05:49:22 -04:00

Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

24
node_modules/ajv-keywords/keywords/patternRequired.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
'use strict';
module.exports = function defFunc(ajv) {
if (ajv.RULES.keywords.patternRequired)
return console.warn('Keyword patternRequired is already defined');
defFunc.definition = {
type: 'object',
inline: require('./dotjs/patternRequired'),
statements: true,
errors: 'full',
metaSchema: {
type: 'array',
items: {
type: 'string',
format: 'regex'
},
uniqueItems: true
}
};
ajv.addKeyword('patternRequired', defFunc.definition);
return ajv;
};