mirror of
https://github.com/strapi/strapi.git
synced 2025-08-07 00:09:23 +00:00
10 lines
158 B
JavaScript
10 lines
158 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const isPolymorphic = ({ assoc }) => {
|
||
|
return assoc.nature.toLowerCase().indexOf('morph') !== -1;
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
isPolymorphic,
|
||
|
};
|