leafjs/orient

View on GitHub
src/types/mixed.js

Summary

Maintainability
A
0 mins
Test Coverage
import Type from './type';

export default class MixedType extends Type {
    _serialize(value) {
        return value;
    }

    _deserialize(value) {
        return value;
    }

    static toString() {
        return 'Mixed';
    }    

    static getDbType(options) {
        return void 0;
    }
}