mirror of
https://github.com/azure/login.git
synced 2026-03-15 09:20:56 -04:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
123 lines
3.5 KiB
Markdown
123 lines
3.5 KiB
Markdown
# is-accessor-descriptor [](https://www.npmjs.com/package/is-accessor-descriptor) [](https://travis-ci.org/jonschlinkert/is-accessor-descriptor)
|
|
|
|
> Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.
|
|
|
|
- [Install](#install)
|
|
- [Usage](#usage)
|
|
- [Examples](#examples)
|
|
- [API](#api)
|
|
- [Related projects](#related-projects)
|
|
- [Running tests](#running-tests)
|
|
- [Contributing](#contributing)
|
|
- [Author](#author)
|
|
- [License](#license)
|
|
|
|
_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_
|
|
|
|
## Install
|
|
|
|
Install with [npm](https://www.npmjs.com/):
|
|
|
|
```sh
|
|
$ npm i is-accessor-descriptor --save
|
|
```
|
|
|
|
## Usage
|
|
|
|
```js
|
|
var isAccessor = require('is-accessor-descriptor');
|
|
|
|
isAccessor({get: function() {}});
|
|
//=> true
|
|
```
|
|
|
|
You may also pass an object and property name to check if the property is an accessor:
|
|
|
|
```js
|
|
isAccessor(foo, 'bar');
|
|
```
|
|
|
|
## Examples
|
|
|
|
`false` when not an object
|
|
|
|
```js
|
|
isAccessor('a')
|
|
isAccessor(null)
|
|
isAccessor([])
|
|
//=> false
|
|
```
|
|
|
|
`true` when the object has valid properties
|
|
|
|
and the properties all have the correct JavaScript types:
|
|
|
|
```js
|
|
isAccessor({get: noop, set: noop})
|
|
isAccessor({get: noop})
|
|
isAccessor({set: noop})
|
|
//=> true
|
|
```
|
|
|
|
`false` when the object has invalid properties
|
|
|
|
```js
|
|
isAccessor({get: noop, set: noop, bar: 'baz'})
|
|
isAccessor({get: noop, writable: true})
|
|
isAccessor({get: noop, value: true})
|
|
//=> false
|
|
```
|
|
|
|
`false` when an accessor is not a function
|
|
|
|
```js
|
|
isAccessor({get: noop, set: 'baz'})
|
|
isAccessor({get: 'foo', set: noop})
|
|
isAccessor({get: 'foo', bar: 'baz'})
|
|
isAccessor({get: 'foo', set: 'baz'})
|
|
//=> false
|
|
```
|
|
|
|
`false` when a value is not the correct type
|
|
|
|
```js
|
|
isAccessor({get: noop, set: noop, enumerable: 'foo'})
|
|
isAccessor({set: noop, configurable: 'foo'})
|
|
isAccessor({get: noop, configurable: 'foo'})
|
|
//=> false
|
|
```
|
|
|
|
## Related projects
|
|
|
|
* [is-accessor-descriptor](https://www.npmjs.com/package/is-accessor-descriptor): Returns true if a value has the characteristics of a valid JavaScript accessor descriptor. | [homepage](https://github.com/jonschlinkert/is-accessor-descriptor)
|
|
* [is-data-descriptor](https://www.npmjs.com/package/is-data-descriptor): Returns true if a value has the characteristics of a valid JavaScript data descriptor. | [homepage](https://github.com/jonschlinkert/is-data-descriptor)
|
|
* [is-descriptor](https://www.npmjs.com/package/is-descriptor): Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for… [more](https://www.npmjs.com/package/is-descriptor) | [homepage](https://github.com/jonschlinkert/is-descriptor)
|
|
* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject)
|
|
|
|
## Running tests
|
|
|
|
Install dev dependencies:
|
|
|
|
```sh
|
|
$ npm i -d && npm test
|
|
```
|
|
|
|
## Contributing
|
|
|
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/is-accessor-descriptor/issues/new).
|
|
|
|
## Author
|
|
|
|
**Jon Schlinkert**
|
|
|
|
* [github/jonschlinkert](https://github.com/jonschlinkert)
|
|
* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
|
|
|
## License
|
|
|
|
Copyright © 2015 [Jon Schlinkert](https://github.com/jonschlinkert)
|
|
Released under the MIT license.
|
|
|
|
***
|
|
|
|
_This file was generated by [verb](https://github.com/verbose/verb) on December 28, 2015._ |