@andrewcreated/deck-of-cards.js
Advanced tools
Comparing version 0.1.0 to 0.1.1
export { DeckOfCards, baseDeck } from "./DeckOfCards"; | ||
export * as CardDefinitions from "./standard52CardsAndJokers"; | ||
export { cardRankArray } from "./cardRankArray"; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -6,2 +25,5 @@ var DeckOfCards_1 = require("./DeckOfCards"); | ||
Object.defineProperty(exports, "baseDeck", { enumerable: true, get: function () { return DeckOfCards_1.baseDeck; } }); | ||
exports.CardDefinitions = __importStar(require("./standard52CardsAndJokers")); | ||
var cardRankArray_1 = require("./cardRankArray"); | ||
Object.defineProperty(exports, "cardRankArray", { enumerable: true, get: function () { return cardRankArray_1.cardRankArray; } }); | ||
//# sourceMappingURL=index.js.map |
export { DeckOfCards, baseDeck } from "./DeckOfCards"; | ||
export * as CardDefinitions from "./standard52CardsAndJokers"; | ||
export { cardRankArray } from "./cardRankArray"; |
{ | ||
"name": "@andrewcreated/deck-of-cards.js", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "A virtual deck of cards as an extensible utility library.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
54069
1026