|
| 1 | +<!-- front-matter |
| 2 | +id: api-vinyl-iscustomprop |
| 3 | +title: Vinyl.isCustomProp() |
| 4 | +hide_title: true |
| 5 | +sidebar_label: Vinyl.isCustomProp() |
| 6 | +--> |
| 7 | + |
| 8 | +# Vinyl.isCustomProp() |
| 9 | + |
| 10 | +Determines if a property is internally managed by Vinyl. Used by Vinyl when setting values inside the constructor or when copying properties in the `clone()` instance method. |
| 11 | + |
| 12 | +This method is useful when extending the Vinyl class. Detailed in [Extending Vinyl][extending-vinyl-section] below. |
| 13 | + |
| 14 | +## Usage |
| 15 | + |
| 16 | +```js |
| 17 | +const Vinyl = require('vinyl'); |
| 18 | + |
| 19 | +Vinyl.isCustomProp('sourceMap') === true; |
| 20 | +Vinyl.isCustomProp('path') === false; |
| 21 | +``` |
| 22 | + |
| 23 | +## Signature |
| 24 | + |
| 25 | +```js |
| 26 | +Vinyl.isCustomProp(property) |
| 27 | +``` |
| 28 | + |
| 29 | +### Parameters |
| 30 | + |
| 31 | +| parameter | type | note | |
| 32 | +|:--------------:|:------:|-------| |
| 33 | +| property | string | The property name to check. | |
| 34 | + |
| 35 | +### Returns |
| 36 | + |
| 37 | +True if the property is not internally managed. |
| 38 | + |
| 39 | +## Extending Vinyl |
| 40 | + |
| 41 | +When custom properties are managed internally, the static `isCustomProp` method must be extended and return false when one of the custom properties is queried. |
| 42 | + |
| 43 | +```js |
| 44 | +const Vinyl = require('vinyl'); |
| 45 | + |
| 46 | +const builtInProps = ['foo', '_foo']; |
| 47 | + |
| 48 | +class SuperFile extends Vinyl { |
| 49 | + constructor(options) { |
| 50 | + super(options); |
| 51 | + this._foo = 'example internal read-only value'; |
| 52 | + } |
| 53 | + |
| 54 | + get foo() { |
| 55 | + return this._foo; |
| 56 | + } |
| 57 | + |
| 58 | + static isCustomProp(name) { |
| 59 | + return super.isCustomProp(name) && builtInProps.indexOf(name) === -1; |
| 60 | + } |
| 61 | +} |
| 62 | +``` |
| 63 | + |
| 64 | +In the example above, `foo` and `_foo` will not be assigned to the new object when cloning or passed in `options` to `new SuperFile(options)`. |
| 65 | + |
| 66 | +If your custom properties or logic require special handling during cloning, override the `clone` method while extending Vinyl. |
| 67 | + |
| 68 | +[extending-vinyl-section]: #extending-vinyl |
0 commit comments