Aaron Bartell
Aaron Bartell
>Perhaps a warning or just open in readonly mode? Yes, that sounds like the best approach.
>Is that what you are suggesting? @styfle, Good question. Part of the original conversation included pondering a survey option that asked whether we should promote this request all the way...
>b) Release a new npm module that is basically a wrapper around this module, which promisifies every object as its returned. Isn't [blue-color/nodejdbc](https://www.npmjs.com/package/nodejdbc) kind of what you're describing? Note it...
Another approach is to create a custom format validator. ``` require 'json-schema' iso_8601_date = -> value { begin Date.iso8601(value) rescue ArgumentError raise JSON::Schema::CustomFormatError.new('must be in ISO-8601 format: CCYY-MM-DD') end }...