A Pen by Richard Moot on CodePen.
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
/* eslint camelcase: 0 */ | |
import Shippo from "shippo"; | |
import { Meteor } from "meteor/meteor"; | |
import { SimpleSchema } from "meteor/aldeed:simple-schema"; | |
import { Logger } from "/server/api"; | |
import { purchaseAddressSchema, parcelSchema } from "../lib/shippoApiSchema"; | |
export const ShippoApi = { | |
methods: {} | |
}; |
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
// Phase 1 | |
var decryptA = function(message){ | |
var temp = message.split(" "), | |
i = 0, | |
result = []; | |
for(i = 0;i < temp.length;i++){ | |
result.push(temp[i].slice(temp[i].length - 1)) | |
} | |
result = result.join(""); | |
return result; |
A Pen by Richard Moot on CodePen.
NewerOlder