mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 04:21:56 +00:00
25 lines
334 B
JavaScript
25 lines
334 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
|
||
|
// Public node modules.
|
||
|
const _ = require('lodash');
|
||
|
|
||
|
/**
|
||
|
* JSON API utils
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
/**
|
||
|
* Verify ressource object
|
||
|
*/
|
||
|
|
||
|
isRessourceObject: function (object) {
|
||
|
return _.isObject(object) && object.hasOwnProperty('id') && object.hasOwnProperty('type');
|
||
|
}
|
||
|
|
||
|
};
|