Sha256: 88992adbf3fd1db11ecd2db39b220805e8d3fe1699f8b5038457352e4b89a623

Contents?: true

Size: 267 Bytes

Versions: 185

Compression:

Stored size: 267 Bytes

Contents

const GIGASECOND_IN_MILIS = 1e9 * 1e3;

export default class Gigasecond {

  constructor(dateOfBirth) {
    this.dateOfBirth = dateOfBirth;
  }

  date() {
    const birthTime = this.dateOfBirth.getTime();
    return new Date(birthTime + GIGASECOND_IN_MILIS);
  }

}

Version data entries

185 entries across 185 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.118 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.117 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.116 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.115 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.114 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.113 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.111 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.110 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.109 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.108 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.107 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.106 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.105 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.104 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.103 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.102 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.101 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.100 tracks/ecmascript/exercises/gigasecond/example.js
trackler-2.2.1.99 tracks/ecmascript/exercises/gigasecond/example.js