All files / src get.js

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12                    30x  
/**
 * get
 * @module get
 * @description get a value from the design system object
 * @author Zander
 * Usage: get(obj, 'bright')
 */
 
import objectGet from 'object-get'
 
export default (obj, value) => objectGet(obj, value)