Skip to content

Instantly share code, notes, and snippets.

View ablankenship10's full-sized avatar

Aaron ablankenship10

  • San Antonio, TX
View GitHub Profile
@ablankenship10
ablankenship10 / Serializer.js
Last active April 11, 2020 05:19
Serialization class for Dynamoose. Configure properties on Model and Document as shown in TODO comments
// TODO -- Model.serializer = new Serializer();
class Serializer {
_serializers = {};
_defaultSerializer = null;
add(name, options) {
validateName(name);