UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

14 lines 352 B
export var getMutationMode = function (mutationMode, undoable) { if (mutationMode) { return mutationMode; } switch (undoable) { case true: return 'undoable'; case false: return 'pessimistic'; default: return 'undoable'; } }; //# sourceMappingURL=getMutationMode.js.map