to-primitive-x

WebJar for to-primitive-x

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

to-primitive-x
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

to-primitive-x
WebJar for to-primitive-x
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/Xotic750/to-primitive-x

Download to-primitive-x

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/to-primitive-x/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>to-primitive-x</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/to-primitive-x/
implementation 'org.webjars.npm:to-primitive-x:1.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/to-primitive-x/
implementation ("org.webjars.npm:to-primitive-x:1.1.0")
'org.webjars.npm:to-primitive-x:jar:1.1.0'
<dependency org="org.webjars.npm" name="to-primitive-x" rev="1.1.0">
  <artifact name="to-primitive-x" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='to-primitive-x', version='1.1.0')
)
libraryDependencies += "org.webjars.npm" % "to-primitive-x" % "1.1.0"
[org.webjars.npm/to-primitive-x "1.1.0"]

Dependencies

compile (8)

Group / Artifact Type Version
org.webjars.npm : is-symbol jar [1.0.1,2)
org.webjars.npm : is-primitive jar [2.0.0,3)
org.webjars.npm : is-date-object jar [1.0.1,2)
org.webjars.npm : is-nil-x jar [1.4.1,2)
org.webjars.npm : is-function-x jar [3.2.0,4)
org.webjars.npm : has-symbol-support-x jar [1.4.1,2)
org.webjars.npm : validate.io-undefined jar [1.0.3,2)
org.webjars.npm : require-object-coercible-x jar [1.4.1,2)

Project Modules

There are no modules declared in this project.

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

to-primitive-x

Converts a JavaScript object to a primitive value.

module.exports(input, [prefferedtype])string | number

This method converts a JavaScript object to a primitive value. Note: When toPrimitive is called with no hint, then it generally behaves as if the hint were Number. However, objects may over-ride this behaviour by defining a @@toPrimitive method. Of the objects defined in this specification only Date objects (see 20.3.4.45) and Symbol objects (see 19.4.3.4) over-ride the default ToPrimitive behaviour. Date objects treat no hint as if the hint were String.

Kind: Exported function
Returns: string | number - The converted input as a primitive.
Throws:

  • TypeError If unable to convert input to a primitive.
Param Type Description
input * The input to convert.
[prefferedtype] constructor The preffered type (String or Number).

Example

import toPrimitive from 'to-primitive-x';

const date = new Date(0);
console.log(toPrimitive(date)); // Thu Jan 01 1970 01:00:00 GMT+0100 (CET)
console.log(toPrimitive(date, String)); // Thu Jan 01 1970 01:00:00 GMT+0100 (CET)
console.log(toPrimitive(date, Number)); // 0

Versions

Version
1.1.0