Skip to content

Instantly share code, notes, and snippets.

@kyokutyo
Last active November 28, 2015 16:10
Show Gist options
  • Save kyokutyo/5b6a91bdd87fb7c2e6e2 to your computer and use it in GitHub Desktop.
Save kyokutyo/5b6a91bdd87fb7c2e6e2 to your computer and use it in GitHub Desktop.
オブジェクトから Gmail クエリ文字列を生成する関数
var genQuery = function (condition) {
var arr = [];
Object.keys(condition).forEach(function (key) {
arr.push(key + ':' + condition[key]);
});
return arr.join(' AND ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment