# ghostkit/2.25.0/gutenberg/store/base/images/controls.js

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 2.25.0. 14 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/store/base/images/controls.js
- Raw: https://pluginprobe.com/plugins/ghostkit/2.25.0/raw/gutenberg/store/base/images/controls.js
- Modified: 2022-02-07T14:32:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/2.25.0/code/gutenberg/store/base/images/controls.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
const { apiFetch } = wp;

export function API_FETCH({ request }) {
  return apiFetch(request).then((fetchedData) => {
    if (fetchedData && fetchedData.success && fetchedData.response) {
      return fetchedData.response;
    }
    return false;
  });
}

```
