diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c255d0..ebede8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-06-21) +## Unreleased (2024-07-17)
@@ -22,6 +22,8 @@
+- [`8d4c46b`](https://github.com/stdlib-js/stdlib/commit/8d4c46b10ca912401e0ff0caa37a17cd3c443c2f) - **refactor:** update paths _(by Athan Reines)_ +- [`18b3c79`](https://github.com/stdlib-js/stdlib/commit/18b3c79c5035c7082618b7379cd6576e64393a96) - **refactor:** update paths _(by Athan Reines)_ - [`201ce11`](https://github.com/stdlib-js/stdlib/commit/201ce11a0985502cfc82891fda3fe3b2d656afef) - **feat:** add `array/mskput` _(by Athan Reines)_
diff --git a/dist/index.js b/dist/index.js index 637fa9e..ef5fdfb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,9 +1,9 @@ "use strict";var s=function(e,r){return function(){return r||e((r={exports:{}}).exports,r),r.exports}};var c=s(function(P,m){ function b(){return{mode:"repeat"}}m.exports=b });var p=s(function(R,f){ -var w=require('@stdlib/assert-is-plain-object/dist'),h=require('@stdlib/assert-has-own-property/dist'),T=require('@stdlib/array-base-assert-contains/dist').factory,v=require('@stdlib/error-tools-fmtprodmsg/dist'),l=["strict","non_strict","strict_broadcast","broadcast","repeat"],E=T(l);function j(e,r){return w(r)?h(r,"mode")&&(e.mode=r.mode,!E(e.mode))?new TypeError(v('null4S',"mode",l.join('", "'),e.mode)):null:new TypeError(v('null2V',r));}f.exports=j +var w=require('@stdlib/assert-is-plain-object/dist'),h=require('@stdlib/assert-has-own-property/dist'),T=require('@stdlib/array-base-assert-contains/dist').factory,v=require('@stdlib/error-tools-fmtprodmsg/dist'),l=["strict","non_strict","strict_broadcast","broadcast","repeat"],E=T(l);function j(e,r){return w(r)?h(r,"mode")&&(e.mode=r.mode,!E(e.mode))?new TypeError(v('1wN4S',"mode",l.join('", "'),e.mode)):null:new TypeError(v('1wN2V',r));}f.exports=j });var q=s(function(z,g){ -var O=require('@stdlib/array-base-assert-is-mostly-safe-data-type-cast/dist'),D=require('@stdlib/array-base-assert-is-real-data-type/dist'),V=require('@stdlib/array-base-assert-is-complex-floating-point-data-type/dist'),d=require('@stdlib/assert-is-collection/dist'),x=require('@stdlib/array-base-mskput/dist'),y=require('@stdlib/array-dtype/dist'),C=require('@stdlib/array-convert/dist'),n=require('@stdlib/error-tools-fmtprodmsg/dist'),M=c(),S=p();function k(e,r,t){var o,u,a,i;if(!d(e))throw new TypeError(n('null2O',e));if(!d(r))throw new TypeError(n('null2y',r));if(!d(t))throw new TypeError(n('null2l',t));if(o=M(),arguments.length>3&&(u=S(o,arguments[3]),u))throw u;if(a=y(e)||"generic",i=y(t)||"generic",!O(i,a))throw new TypeError(n("invalid argument. Third argument cannot be safely cast to the input array data type. Data types: [%s, %s].",i,a));return V(a)&&D(i)&&(t=C(t,a)),x(e,r,t,o.mode)}g.exports=k +var O=require('@stdlib/array-base-assert-is-mostly-safe-data-type-cast/dist'),D=require('@stdlib/array-base-assert-is-real-data-type/dist'),V=require('@stdlib/array-base-assert-is-complex-floating-point-data-type/dist'),d=require('@stdlib/assert-is-collection/dist'),x=require('@stdlib/array-base-mskput/dist'),y=require('@stdlib/array-dtype/dist'),C=require('@stdlib/array-convert/dist'),n=require('@stdlib/error-tools-fmtprodmsg/dist'),M=c(),S=p();function k(e,r,t){var o,u,a,i;if(!d(e))throw new TypeError(n('1wN2O',e));if(!d(r))throw new TypeError(n('1wN2y',r));if(!d(t))throw new TypeError(n('1wN2l',t));if(o=M(),arguments.length>3&&(u=S(o,arguments[3]),u))throw u;if(a=y(e)||"generic",i=y(t)||"generic",!O(i,a))throw new TypeError(n('1wNFu',i,a));return V(a)&&D(i)&&(t=C(t,a)),x(e,r,t,o.mode)}g.exports=k });var _=q();module.exports=_; /** @license Apache-2.0 */ //# sourceMappingURL=index.js.map diff --git a/package.json b/package.json index 71623b4..2cc9b8d 100644 --- a/package.json +++ b/package.json @@ -65,8 +65,8 @@ "@stdlib/assert-is-array": "^0.2.1", "@stdlib/assert-is-complex64": "^0.2.1", "@stdlib/complex-float32": "^0.2.1", - "@stdlib/complex-imagf": "^0.2.1", - "@stdlib/complex-realf": "^0.2.1", + "@stdlib/complex-float32-imag": "github:stdlib-js/complex-float32-imag#main", + "@stdlib/complex-float32-real": "github:stdlib-js/complex-float32-real#main", "@stdlib/math-base-special-pow": "^0.2.1", "@stdlib/random-array-discrete-uniform": "^0.2.1", "@stdlib/random-base-bernoulli": "^0.2.1", diff --git a/test/test.js b/test/test.js index 6124be7..c7b795f 100644 --- a/test/test.js +++ b/test/test.js @@ -28,8 +28,8 @@ var zeros = require( '@stdlib/array-zeros' ); var toAccessorArray = require( '@stdlib/array-base-to-accessor-array' ); var isAccessorArray = require( '@stdlib/assert-is-accessor-array' ); var Complex64 = require( '@stdlib/complex-float32' ); -var realf = require( '@stdlib/complex-realf' ); -var imagf = require( '@stdlib/complex-imagf' ); +var realf = require( '@stdlib/complex-float32-real' ); +var imagf = require( '@stdlib/complex-float32-imag' ); var isComplex64 = require( '@stdlib/assert-is-complex64' ); var mskput = require( './../lib' );