noppoMan/npdynamodb

View on GitHub
lib/schema/types.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

module.exports = {
  string: 'S',
  number: 'N',
  binary: 'B',
  stringSet: 'SS',
  numberSet: 'NS',
  binarySet: 'BS',
  map: 'M',
  list: 'L',
  null: 'NULL',
  bool: 'BOOL'
};