ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| JapaneseUtil = function() { | |
| const charMode = { | |
| none: null, | |
| ascii: "ascii", | |
| alphaNumMark: "alphaNumMark", | |
| surroundMark: "surroundMark", // "'{} etc. | |
| alphaNum: "alphaNum", | |
| alpha: "alpha", |
| package main | |
| import ( | |
| "testing" | |
| "golang.org/x/crypto/bcrypt" | |
| ) | |
| func BenchmarkBcrypt4(b *testing.B) { | |
| benchBcrypt(b, 4) |
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| DBQuery.prototype.p = function() { | |
| var args = arguments | |
| this.forEach(function(e) { | |
| var result = {} | |
| if(args.length == 0) { | |
| result = e | |
| } else { | |
| for(var i = 0; i < args.length; i++) { | |
| var target = e | |
| var keys = args[i].split('.') |