@stdlib/utils-constant-function 0.0.4 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +38 -2
- package/package.json +1 -1
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# Constant Function
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Constant function.
|
|
26
26
|
|
|
@@ -121,6 +121,23 @@ for ( i = 0; i < 10; i++ ) {
|
|
|
121
121
|
|
|
122
122
|
<!-- /.examples -->
|
|
123
123
|
|
|
124
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
125
|
+
|
|
126
|
+
<section class="related">
|
|
127
|
+
|
|
128
|
+
* * *
|
|
129
|
+
|
|
130
|
+
## See Also
|
|
131
|
+
|
|
132
|
+
- <span class="package-name">[`@stdlib/utils/argument-function`][@stdlib/utils/argument-function]</span><span class="delimiter">: </span><span class="description">argument function.</span>
|
|
133
|
+
- <span class="package-name">[`@stdlib/utils/identity-function`][@stdlib/utils/identity-function]</span><span class="delimiter">: </span><span class="description">identity function.</span>
|
|
134
|
+
|
|
135
|
+
</section>
|
|
136
|
+
|
|
137
|
+
<!-- /.related -->
|
|
138
|
+
|
|
139
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
140
|
+
|
|
124
141
|
|
|
125
142
|
<section class="main-repo" >
|
|
126
143
|
|
|
@@ -145,7 +162,7 @@ See [LICENSE][stdlib-license].
|
|
|
145
162
|
|
|
146
163
|
## Copyright
|
|
147
164
|
|
|
148
|
-
Copyright © 2016-
|
|
165
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
149
166
|
|
|
150
167
|
</section>
|
|
151
168
|
|
|
@@ -164,9 +181,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
164
181
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-constant-function/main.svg
|
|
165
182
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-constant-function?branch=main
|
|
166
183
|
|
|
184
|
+
<!--
|
|
185
|
+
|
|
167
186
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-constant-function.svg
|
|
168
187
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-constant-function/main
|
|
169
188
|
|
|
189
|
+
-->
|
|
190
|
+
|
|
191
|
+
[umd]: https://github.com/umdjs/umd
|
|
192
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
193
|
+
|
|
194
|
+
[deno-url]: https://github.com/stdlib-js/utils-constant-function/tree/deno
|
|
195
|
+
[umd-url]: https://github.com/stdlib-js/utils-constant-function/tree/umd
|
|
196
|
+
[esm-url]: https://github.com/stdlib-js/utils-constant-function/tree/esm
|
|
197
|
+
|
|
170
198
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
171
199
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
172
200
|
|
|
@@ -178,6 +206,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
178
206
|
|
|
179
207
|
[constant-function]: https://en.wikipedia.org/wiki/Constant_function
|
|
180
208
|
|
|
209
|
+
<!-- <related-links> -->
|
|
210
|
+
|
|
211
|
+
[@stdlib/utils/argument-function]: https://www.npmjs.com/package/@stdlib/utils-argument-function
|
|
212
|
+
|
|
213
|
+
[@stdlib/utils/identity-function]: https://www.npmjs.com/package/@stdlib/utils-identity-function
|
|
214
|
+
|
|
215
|
+
<!-- </related-links> -->
|
|
216
|
+
|
|
181
217
|
</section>
|
|
182
218
|
|
|
183
219
|
<!-- /.links -->
|
package/package.json
CHANGED