mirror of
https://github.com/ComfortablyCoding/strapi-plugin-slugify.git
synced 2025-12-17 00:01:53 -05:00
13 lines
194 B
JavaScript
13 lines
194 B
JavaScript
'use strict';
|
|
|
|
const pluginPkg = require('../../package.json');
|
|
|
|
/**
|
|
* Returns the plugin id
|
|
*
|
|
* @return plugin id
|
|
*/
|
|
const pluginId = pluginPkg.strapi.name;
|
|
|
|
module.exports = { pluginId };
|