Skip to content

Commit 91cbfa3

Browse files
committed
refactor: move files into separate packages
1 parent 2dcaa44 commit 91cbfa3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+3393
-48
lines changed

lib/node_modules/@stdlib/fft/base/fftpack/lib/index.js renamed to lib/node_modules/@stdlib/fft/base/fftpack/cfftb/lib/index.js

Lines changed: 11 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -18,34 +18,22 @@
1818

1919
'use strict';
2020

21-
/*
22-
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
23-
*/
24-
25-
// MODULES //
26-
27-
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
28-
29-
30-
// MAIN //
31-
3221
/**
33-
* Top-level namespace.
22+
* TODO: description.
3423
*
35-
* @namespace ns
24+
* @module @stdlib/fft/base/fftpack/cfftb
25+
*
26+
* @example
27+
* var cfftb = require( '@stdlib/fft/base/fftpack/cfftb' );
28+
*
29+
* // TODO
3630
*/
37-
var ns = {};
3831

39-
/**
40-
* @name cfftb
41-
* @memberof ns
42-
* @readonly
43-
* @type {Function}
44-
* @see {@link module:@stdlib/fft/base/fftpack/cfftb}
45-
*/
46-
setReadOnly( ns, 'cfftb', require( './cfftb.js' ) );
32+
// MODULES //
33+
34+
var main = require( './main.js' );
4735

4836

4937
// EXPORTS //
5038

51-
module.exports = ns;
39+
module.exports = main;

0 commit comments

Comments
 (0)