UNPKG

252 BJavaScriptView Raw
1/**
2 * Get block directory.
3 *
4 * @param {string} blockName The block name.
5 * @return {string} The block directory.
6 */
7
8'use strict';
9
10const path = require( 'path' );
11
12module.exports = blockName => {
13 return path.join( process.cwd(), blockName );
14};