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