UNPKG

170 BJavaScriptView Raw
1import { isString } from './nodash';
2export default function getOptionProperty(option, key) {
3 if (isString(option)) {
4 return undefined;
5 }
6
7 return option[key];
8}
\No newline at end of file