Nicolas Cannasse 6 년 전
부모
커밋
249e3cbeeb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/haxe/crypto/Base64.hx

+ 1 - 1
std/haxe/crypto/Base64.hx

@@ -65,7 +65,7 @@ class Base64 {
 		return str;
 	}
 
-	public static function urlEncode( str : String, complement = false ) : haxe.io.Bytes {
+	public static function urlDecode( str : String, complement = false ) : haxe.io.Bytes {
 		if( complement )
 			while( str.charCodeAt(str.length-1) == "=".code )
 				str = str.substr(0,-1);