We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 344cd23 commit f66a9adCopy full SHA for f66a9ad
component.json
@@ -2,7 +2,7 @@
2
"name": "json-schema-core",
3
"repo": "ericgj/json-schema-core",
4
"description": "JSON Schema core module",
5
- "version": "0.0.16",
+ "version": "0.0.17",
6
"keywords": [],
7
"dependencies": {
8
"ericgj/json-schema-uri": "*",
index.js
@@ -159,6 +159,10 @@ Schema.prototype.property = function(key){
159
return this._properties[key];
160
}
161
162
+Schema.prototype.hasProperty = function(key){
163
+ return has.call(this._properties,key);
164
+}
165
+
166
// mix in each binding method into a Correlation object
167
Schema.prototype.bind = function(instance){
168
var ret = new Correlation(this,instance);
0 commit comments