* String SchemaType constructor. * * @param {String} key * @param {Object} options * @inherits SchemaType * @api public
(key, options)
| 23 | */ |
| 24 | |
| 25 | function SchemaString(key, options) { |
| 26 | this.enumValues = []; |
| 27 | this.regExp = null; |
| 28 | SchemaType.call(this, key, options, 'String'); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * This schema type's name, to defend against minifiers that mangle |
nothing calls this directly
no outgoing calls
no test coverage detected