UNPKG

acklen-keystone

Version:

Web Application Framework and Admin GUI / Content Management System built on Express.js and Mongoose

18 lines (12 loc) 291 B
import ArrayFieldMixin from '../../mixins/ArrayField'; import Field from '../Field'; module.exports = Field.create({ displayName: 'NumberArrayField', statics: { type: 'NumberArray', }, mixins: [ArrayFieldMixin], cleanInput (input) { return input.replace(/[^\d]/g, ''); }, });