golden hour
/var/www/html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/utils
⬆️ Go Up
Upload
File/Folder
Size
Actions
has-in-state.js
379 B
Del
OK
index.js
113 B
Del
OK
update-state.js
476 B
Del
OK
Edit: has-in-state.js
/** * External dependencies */ import { has } from 'lodash'; /** * Utility for returning whether the given path exists in the state. * * @param {Object} state The state being checked * @param {Array} path The path to check * * @return {boolean} True means this exists in the state. */ export default function hasInState( state, path ) { return has( state, path ); }
Save