-
-
Notifications
You must be signed in to change notification settings - Fork 968
feat: add symbol/to-string-tag
#8491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kaushal-kumar-it
wants to merge
8
commits into
stdlib-js:develop
Choose a base branch
from
kaushal-kumar-it:rfc-add-symbol-to-string-tag
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
44f0dc7
feat: add symbol/to-string-tag package
kaushal-kumar-it 4015695
feat: add symbol/to-string-tag package
kaushal-kumar-it e36e824
feat: add symbol/to-string-tag package
kaushal-kumar-it 4fa6f7d
feat: add symbol/to-string-tag package
kaushal-kumar-it f30401d
feat: add symbol/to-string-tag package
kaushal-kumar-it 3feaf22
feat: add symbol/to-string-tag package
kaushal-kumar-it 49fda69
feat: add symbol/to-string-tag package
kaushal-kumar-it eb92fd0
fixed copy paste mistakes
kaushal-kumar-it File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
130 changes: 130 additions & 0 deletions
130
lib/node_modules/@stdlib/symbol/to-string-tag/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,130 @@ | ||
| <!-- | ||
|
|
||
| @license Apache-2.0 | ||
|
|
||
| Copyright (c) 2025 The Stdlib Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
|
|
||
| --> | ||
|
|
||
| # ToStringTagSymbol | ||
|
|
||
| > To string tag [symbol][mdn-symbol-tostringtag] which is used to customize the string description of an object. | ||
|
|
||
| <!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="intro"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.intro --> | ||
|
|
||
| <!-- Package usage documentation. --> | ||
|
|
||
| <section class="usage"> | ||
|
|
||
| ## Usage | ||
|
|
||
| ```javascript | ||
| var ToStringTagSymbol = require( '@stdlib/symbol/to-string-tag' ); | ||
| ``` | ||
|
|
||
| #### ToStringTagSymbol | ||
|
|
||
| To string tag [`symbol`][mdn-symbol-tostringtag] which is used to customize the string description of an object. | ||
|
|
||
| ```javascript | ||
| var s = typeof ToStringTagSymbol; | ||
| // e.g., returns 'symbol' | ||
| ``` | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.usage --> | ||
|
|
||
| <!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="notes"> | ||
|
|
||
| ## Notes | ||
|
|
||
| - The [symbol][mdn-symbol] is only supported in environments which support [symbols][mdn-symbol]. In non-supporting environments, the value is `null`. | ||
| - The `Object.prototype.toString` method uses the `Symbol.toStringTag` property, if present, as the tag in the string representation. For example, an object with `obj[Symbol.toStringTag] = 'Custom'` will return `'[object Custom]'` when `Object.prototype.toString.call(obj)` is invoked. | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.notes --> | ||
|
|
||
| <!-- Package usage examples. --> | ||
|
|
||
| <section class="examples"> | ||
|
|
||
| ## Examples | ||
|
|
||
| <!-- eslint no-undef: "error" --> | ||
|
|
||
| ```javascript | ||
| var ToStringTagSymbol = require( '@stdlib/symbol/to-string-tag' ); | ||
|
|
||
| function valueOfCustom() { | ||
| return 'custom'; | ||
| } | ||
|
|
||
| var obj = {}; | ||
| obj.valueOf = valueOfCustom; | ||
|
|
||
| obj[ ToStringTagSymbol ] = 'Custom'; | ||
|
|
||
| console.log( Object.prototype.toString.call( obj ) ); | ||
| // => '[object Custom]' | ||
|
|
||
| var arr = []; | ||
| console.log( Object.prototype.toString.call( arr ) ); | ||
| // => '[object Array]' | ||
|
|
||
| arr[ ToStringTagSymbol ] = 'MyArray'; | ||
| console.log( Object.prototype.toString.call( arr ) ); | ||
| // => '[object MyArray]' | ||
| ``` | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.examples --> | ||
|
|
||
| <!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="references"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.references --> | ||
|
|
||
| <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
|
||
| <section class="related"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.related --> | ||
|
|
||
| <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="links"> | ||
|
|
||
| [mdn-symbol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol | ||
| [mdn-symbol-tostringtag]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/toStringTag | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.links --> |
18 changes: 18 additions & 0 deletions
18
lib/node_modules/@stdlib/symbol/to-string-tag/docs/repl.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
|
|
||
| {{alias}} | ||
| To string tag. | ||
|
|
||
| This symbol is used to determine whether a constructor object recognizes an | ||
| object as its instance. | ||
|
|
||
| The symbol is only supported in ES6/ES2015+ environments. For non-supporting | ||
| environments, the value is `null`. | ||
|
|
||
| Examples | ||
| -------- | ||
| > var s = {{alias}} | ||
| e.g., <symbol> | ||
|
|
||
| See Also | ||
| -------- | ||
|
|
31 changes: 31 additions & 0 deletions
31
lib/node_modules/@stdlib/symbol/to-string-tag/docs/types/index.d.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| /* | ||
| * @license Apache-2.0 | ||
| * | ||
| * Copyright (c) 2025 The Stdlib Authors. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| // TypeScript Version: 4.1 | ||
|
|
||
| // EXPORTS // | ||
|
|
||
| /** | ||
| * Has instance symbol. | ||
| * | ||
| * ## Notes | ||
| * | ||
| * - This symbol is used to determine whether a constructor object recognizes an object as its instance. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Copy-paste mistake. |
||
| * - The symbol is only supported in ES6/ES2015+ environments. For non-supporting environments, the value is `null`. | ||
| */ | ||
| export = Symbol.toStringTag; | ||
29 changes: 29 additions & 0 deletions
29
lib/node_modules/@stdlib/symbol/to-string-tag/docs/types/test.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| /* | ||
| * @license Apache-2.0 | ||
| * | ||
| * Copyright (c) 2025 The Stdlib Authors. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| /* eslint-disable @typescript-eslint/no-unused-expressions */ | ||
|
|
||
| import ToStringTag = require( './index' ); | ||
|
|
||
|
|
||
| // TESTS // | ||
|
|
||
| // The exported value is the `toStringTag` symbol... | ||
| { | ||
| ToStringTag; | ||
| } |
41 changes: 41 additions & 0 deletions
41
lib/node_modules/@stdlib/symbol/to-string-tag/examples/index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| /** | ||
| * @license Apache-2.0 | ||
| * | ||
| * Copyright (c) 2025 The Stdlib Authors. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| 'use strict'; | ||
|
|
||
| var ToStringTagSymbol = require( './../lib' ); | ||
|
|
||
| function valueOfCustom() { | ||
| return 'custom'; | ||
| } | ||
|
|
||
| var obj = {}; | ||
| obj.valueOf = valueOfCustom; | ||
|
|
||
| obj[ ToStringTagSymbol ] = 'Custom'; | ||
|
|
||
| console.log( Object.prototype.toString.call( obj ) ); | ||
| // => '[object Custom]' | ||
|
|
||
| var arr = []; | ||
| console.log( Object.prototype.toString.call( arr ) ); | ||
| // => '[object Array]' | ||
|
|
||
| arr[ ToStringTagSymbol ] = 'MyArray'; | ||
| console.log( Object.prototype.toString.call( arr ) ); | ||
| // => '[object MyArray]' |
52 changes: 52 additions & 0 deletions
52
lib/node_modules/@stdlib/symbol/to-string-tag/lib/index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /** | ||
| * @license Apache-2.0 | ||
| * | ||
| * Copyright (c) 2025 The Stdlib Authors. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| 'use strict'; | ||
|
|
||
| /** | ||
| * Symbol used to customize the string description of an object. | ||
| * | ||
| * @module @stdlib/symbol/to-string-tag | ||
| * | ||
| * @example | ||
| * var ToStringTagSymbol = require( '@stdlib/symbol/to-string-tag' ); | ||
| * | ||
| * var obj = {}; | ||
| * obj[ ToStringTagSymbol ] = 'Custom'; | ||
| * | ||
| * var str = Object.prototype.toString.call( obj ); | ||
| * // returns '[object Custom]' | ||
| * | ||
| * @example | ||
| * var ToStringTagSymbol = require( '@stdlib/symbol/to-string-tag' ); | ||
| * | ||
| * var arr = []; | ||
| * arr[ ToStringTagSymbol ] = 'MyArray'; | ||
| * | ||
| * var str = Object.prototype.toString.call( arr ); | ||
| * // returns '[object MyArray]' | ||
| */ | ||
|
|
||
| // MAIN // | ||
|
|
||
| var main = require( './main.js' ); | ||
|
|
||
|
|
||
| // EXPORTS // | ||
|
|
||
| module.exports = main; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| /** | ||
| * @license Apache-2.0 | ||
| * | ||
| * Copyright (c) 2025 The Stdlib Authors. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| 'use strict'; | ||
|
|
||
| // MODULES // | ||
|
|
||
| var hasToStringTagSymbolSupport = require( '@stdlib/assert/has-tostringtag-support' ); // eslint-disable-line id-length | ||
|
|
||
|
|
||
| // MAIN // | ||
|
|
||
| /** | ||
| * To string tag symbol. | ||
| * | ||
| * @name ToStringTagSymbol | ||
| * @constant | ||
| * @type {(symbol|null)} | ||
| * | ||
| * @example | ||
| * var obj = {}; | ||
| * obj[ ToStringTagSymbol ] = 'Custom'; | ||
| * | ||
| * var str = Object.prototype.toString.call( obj ); | ||
| * // returns '[object Custom]' | ||
| */ | ||
| var ToStringTagSymbol = ( hasToStringTagSymbolSupport() ) ? Symbol.toStringTag : null; // eslint-disable-line max-len | ||
|
|
||
|
|
||
| // EXPORTS // | ||
|
|
||
| module.exports = ToStringTagSymbol; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy-paste mistake.