@stdlib/assert-is-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 +23 -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
|
# isFunction
|
|
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
|
> Test if a value is a function.
|
|
26
26
|
|
|
@@ -96,6 +96,16 @@ bool = isFunction( {} );
|
|
|
96
96
|
|
|
97
97
|
<!-- /.examples -->
|
|
98
98
|
|
|
99
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
100
|
+
|
|
101
|
+
<section class="related">
|
|
102
|
+
|
|
103
|
+
</section>
|
|
104
|
+
|
|
105
|
+
<!-- /.related -->
|
|
106
|
+
|
|
107
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
108
|
+
|
|
99
109
|
|
|
100
110
|
<section class="main-repo" >
|
|
101
111
|
|
|
@@ -120,7 +130,7 @@ See [LICENSE][stdlib-license].
|
|
|
120
130
|
|
|
121
131
|
## Copyright
|
|
122
132
|
|
|
123
|
-
Copyright © 2016-
|
|
133
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
124
134
|
|
|
125
135
|
</section>
|
|
126
136
|
|
|
@@ -139,9 +149,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
139
149
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-function/main.svg
|
|
140
150
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-function?branch=main
|
|
141
151
|
|
|
152
|
+
<!--
|
|
153
|
+
|
|
142
154
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-function.svg
|
|
143
155
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-function/main
|
|
144
156
|
|
|
157
|
+
-->
|
|
158
|
+
|
|
159
|
+
[umd]: https://github.com/umdjs/umd
|
|
160
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
161
|
+
|
|
162
|
+
[deno-url]: https://github.com/stdlib-js/assert-is-function/tree/deno
|
|
163
|
+
[umd-url]: https://github.com/stdlib-js/assert-is-function/tree/umd
|
|
164
|
+
[esm-url]: https://github.com/stdlib-js/assert-is-function/tree/esm
|
|
165
|
+
|
|
145
166
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
146
167
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
147
168
|
|
package/package.json
CHANGED